From f6b21da0e1a55109a4a19f9676a6a06a3087bd77 Mon Sep 17 00:00:00 2001 From: jaydee Date: Tue, 17 Jun 2025 19:31:56 +0200 Subject: [PATCH] build --- handle_imported_video.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/handle_imported_video.py b/handle_imported_video.py index fd1354f..d652155 100644 --- a/handle_imported_video.py +++ b/handle_imported_video.py @@ -122,7 +122,9 @@ def flip_videos(_DEV,_SOURCE_DIR,_DAY_DIRS): print(_FULL_PATH) print(myCmd) print(myCmd) - proc = subprocess.Popen(myCmd,stdout=subprocess.DEVNULL,stderr=subprocess.STDOUT) + status, output = subprocess.getstatusoutput(myCmd) + #proc = subprocess.Popen(myCmd,stdout=subprocess.DEVNULL,stderr=subprocess.STDOUT) + # print(f"Fliping {filename} in {_DAY_DIR}...".ljust(100)) # ff = FfmpegProgress(myCmd) # with tqdm(total=100, position=1, desc="Fliping") as pbar: