bitwarden

This commit is contained in:
jaydee
2024-09-25 01:03:32 +02:00
parent 4e2f297fa5
commit ad83b16f61

View File

@@ -81,11 +81,11 @@ if _ACTION == "flip":
export_name = "X" + _FILE export_name = "X" + _FILE
if ops == "win": if ops == "win":
myCmd = [ myCmd = [
"ffmpeg", "-display_rotation", "180", "-f", "-i", _FILE ,"-vcodec", "copy", "-acodec", "copy", "-y", export_name "ffmpeg", "180", "-f", "-i", _FILE ,"-c", "copy", "-metadata:s:v:0", "rotate=180", "-y", export_name
] ]
else: else:
myCmd = [ myCmd = [
"/opt/ffmpeg/ffmpeg", "-display_rotation", "180", "-f", "-i", _FILE, "-vcodec", "copy", "-acodec", "copy", "-y", export_name "/opt/ffmpeg/ffmpeg", "-f", "-i", _FILE, "-c", "copy", "-metadata:s:v:0", "rotate=180", "-y", export_name
] ]
print(_FULL_PATH) print(_FULL_PATH)
print(myCmd) print(myCmd)