From de27fa68600fafc2c0cf7cfe7fecada17ddabc86 Mon Sep 17 00:00:00 2001 From: jaydee Date: Tue, 24 Sep 2024 19:32:39 +0200 Subject: [PATCH] bitwarden --- handle_imported_video.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/handle_imported_video.py b/handle_imported_video.py index 3f93c33..404e73c 100644 --- a/handle_imported_video.py +++ b/handle_imported_video.py @@ -153,20 +153,20 @@ if _ACTION == "join": if _FLIP: if ops == "win": myCmd = [ - "ffmpeg", "-display_rotation", "180", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name, "null", "/dev/null", + "ffmpeg", "-display_rotation", "180", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name ] else: myCmd = [ - "/opt/ffmpeg/ffmpeg", "-display_rotation", "180", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name, "null", "/dev/null", + "/opt/ffmpeg/ffmpeg", "-display_rotation", "180", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name ] else: if ops == "win": myCmd = [ - "ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name , "null", "/dev/null", + "ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name ] else: myCmd = [ - "/opt/ffmpeg/ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name , "null", "/dev/null", + "/opt/ffmpeg/ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name ] print(myCmd)