bitwarden

This commit is contained in:
jaydee
2024-10-02 20:27:31 +02:00
parent 86b7c127ac
commit aef4cb9e21

View File

@@ -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))