removed outputs filenames

This commit is contained in:
Zen 2020-12-06 02:59:46 +02:00
parent 22d88fec33
commit 5e842774aa

View file

@ -212,12 +212,4 @@ def setup(project):
(project.temp / 'encode').mkdir(exist_ok=True) (project.temp / 'encode').mkdir(exist_ok=True)
def outputs_filenames(project: Project):
"""
Set output filename
:param project: the Project
"""
suffix = '.mkv'
project.output_file = Path(project.output_file).with_suffix(suffix) if project.output_file \
else Path(f'{project.input.stem}_{project.encoder}{suffix}')