mirror of
https://gitlab.sectorq.eu/jaydee/python.git
synced 2025-12-14 18:44:53 +01:00
bitwarden
This commit is contained in:
@@ -114,9 +114,15 @@ if os.path.exists(_FULL_PATH):
|
|||||||
f.close()
|
f.close()
|
||||||
print(_FULL_PATH)
|
print(_FULL_PATH)
|
||||||
if _FLIP:
|
if _FLIP:
|
||||||
myCmd = '/opt/ffmpeg/ffmpeg -display_rotation 180 -f concat -i video.txt -vcodec copy -acodec copy ' + export_name
|
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:
|
else:
|
||||||
myCmd = '/opt/ffmpeg/ffmpeg -f concat -i video.txt -vcodec copy -acodec copy ' + export_name
|
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)
|
print(myCmd)
|
||||||
print(os.getcwd())
|
print(os.getcwd())
|
||||||
status, output = subprocess.getstatusoutput(myCmd)
|
status, output = subprocess.getstatusoutput(myCmd)
|
||||||
|
|||||||
Reference in New Issue
Block a user