bitwarden

This commit is contained in:
jaydee
2024-09-25 00:11:11 +02:00
parent cc65f4c01a
commit a1ab5fba4d

View File

@@ -212,7 +212,7 @@ if _ACTION == "encode":
else: else:
sys.exit() sys.exit()
os.chdir(_FULL_PATH)
for p in parts: for p in parts:
export_name = "encoded_" + p export_name = "encoded_" + p
@@ -237,7 +237,7 @@ if _ACTION == "encode":
print(myCmd) print(myCmd)
print(f"Encoding files...") print(f"Encoding files...")
ff = FfmpegProgress(myCmd) 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(): for progress in ff.run_command_with_progress():
pbar.update(progress - pbar.n) pbar.update(progress - pbar.n)