bitwarden

This commit is contained in:
jaydee
2024-09-24 14:57:35 +02:00
parent c1a15b1768
commit c4acbda07f

View File

@@ -114,7 +114,13 @@ if os.path.exists(_FULL_PATH):
f.close()
print(_FULL_PATH)
if _FLIP:
if ops == "win":
myCmd = '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
else:
if ops == "win":
myCmd = '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
print(myCmd)