mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
Fixed wrong name for output file in normal mode
This commit is contained in:
parent
9992414053
commit
434a6c4db1
1 changed files with 2 additions and 2 deletions
|
@ -142,9 +142,9 @@ class Project(object):
|
|||
os.makedirs(Path(self.output_file), exist_ok=True)
|
||||
self.output_file = Path(f"{self.output_file}{self.input.stem}_{self.encoder}{suffix}")
|
||||
else:
|
||||
self.output_file = Path(f"{self.input.stem}_{self.encoder}{suffix}")
|
||||
self.output_file = Path(self.output_file).with_suffix(suffix)
|
||||
else:
|
||||
self.output_file = Path(self.output_file).with_suffix(suffix)
|
||||
self.output_file = Path(f"{self.input.stem}_{self.encoder}{suffix}")
|
||||
|
||||
def load_project_from_file(self, path_string):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue