From 8dd8bd6ce1e929674bd59477bc62d9c57cbb1fdd Mon Sep 17 00:00:00 2001 From: jaydee Date: Tue, 17 Jun 2025 21:03:28 +0200 Subject: [PATCH] build --- handle_imported_video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handle_imported_video.py b/handle_imported_video.py index 258c417..faec032 100644 --- a/handle_imported_video.py +++ b/handle_imported_video.py @@ -381,7 +381,7 @@ def encode_videos(_DEV,_SOURCE_DIR,_DAY_DIRS): myCmd = [ "/usr/bin/ffmpeg", "-i", p, "-c:v", "hevc_amf", "-rc", "cqp", "-qp_i", _QUALITY[0], "-qp_p", _QUALITY[1], "-quality", "quality", "-crf", _QUALITY[2], "-y", export_name , "-f", "null", "/dev/null", ] - print(myCmd) + print(" ".join(myCmd)) d_print(" ".join(myCmd)) print(f"Encoding {p} to {export_name} in {_DAY_DIR}...".ljust(100)) ff = FfmpegProgress(myCmd)