diff --git a/handle_imported_video.py b/handle_imported_video.py index d2e15d6..cc0b3ed 100644 --- a/handle_imported_video.py +++ b/handle_imported_video.py @@ -212,7 +212,7 @@ if _ACTION == "encode": else: sys.exit() - + os.chdir(_FULL_PATH) for p in parts: export_name = "encoded_" + p @@ -237,7 +237,7 @@ if _ACTION == "encode": print(myCmd) print(f"Encoding files...") ff = FfmpegProgress(myCmd) - with tqdm(total=100, position=1, desc="Convert") as pbar: + with tqdm(total=100, position=1, desc="Encode") as pbar: for progress in ff.run_command_with_progress(): pbar.update(progress - pbar.n)