diff --git a/handle_imported_video.py b/handle_imported_video.py index 590be4b..52d83e0 100644 --- a/handle_imported_video.py +++ b/handle_imported_video.py @@ -210,7 +210,7 @@ if _ACTION == "join": if _FLIP: if ops == "win": myCmd = [ - "ffmpeg", "-f", "concat", "-i", "video.txt ", "-c", "copy", "-metadata:s:v:0", "rotate=180","-y", export_name + "ffmpeg", "-f", "concat", "-i", "video.txt", "-c", "copy", "-metadata:s:v:0", "rotate=180","-y", export_name ] else: myCmd = [ @@ -219,11 +219,11 @@ if _ACTION == "join": else: if ops == "win": myCmd = [ - "ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", "-y", export_name + "ffmpeg", "-f", "concat", "-i", "video.txt","-vcodec", "copy", "-acodec", "copy", "-y", export_name ] else: myCmd = [ - "/opt/ffmpeg/ffmpeg", "-f", "concat", "-i", "video.txt ","-c", "copy", "-y", export_name + "/opt/ffmpeg/ffmpeg", "-f", "concat", "-i", "video.txt","-c", "copy", "-y", export_name ] if _TEST: print(" ".join(myCmd))