bitwarden

This commit is contained in:
jaydee
2024-09-24 19:39:43 +02:00
parent 788824cf99
commit c11fd55a03

View File

@@ -153,20 +153,20 @@ if _ACTION == "join":
if _FLIP: if _FLIP:
if ops == "win": if ops == "win":
myCmd = [ myCmd = [
"ffmpeg", "-display_rotation", "180", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name, "/dev/null" "ffmpeg", "-display_rotation", "180", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name
] ]
else: else:
myCmd = [ myCmd = [
"/opt/ffmpeg/ffmpeg", "-display_rotation", "180", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name, "/dev/null" "/opt/ffmpeg/ffmpeg", "-display_rotation", "180", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name
] ]
else: else:
if ops == "win": if ops == "win":
myCmd = [ myCmd = [
"ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name, "/dev/null" "ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name
] ]
else: else:
myCmd = [ myCmd = [
"/opt/ffmpeg/ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name, "/dev/null" "/opt/ffmpeg/ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", export_name
] ]
print(myCmd) print(myCmd)