bitwarden

This commit is contained in:
jaydee
2024-09-26 22:12:14 +02:00
parent 2205c7e68e
commit fc7229df45

View File

@@ -166,7 +166,7 @@ if _ACTION == "join":
if _FLIP:
if ops == "win":
myCmd = [
"ffmpeg", "-f", "concat", "-i", "video.txt ","-vcodec", "copy", "-acodec", "copy", "-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 = [
@@ -279,7 +279,7 @@ if _ACTION == "encode":
if _FLIP:
if ops == "win":
myCmd = [
"ffmpeg", "-display_rotation", "180", "-i", p, "-c:v", "hevc_amf", "-rc", "cqp", "-qp_i", _QUALITY[0], "-qp_p", _QUALITY[1], "-quality", "quality", "-crf", _QUALITY[2], "-y", export_name, "-f", "null", "/dev/null",
"ffmpeg", "-i", p, "-c:v", "hevc_amf", "-rc", "cqp", "-qp_i", _QUALITY[0], "-qp_p", _QUALITY[1], "-quality", "quality", "-crf", _QUALITY[2], "-metadata:s:v:0", "-y", export_name, "-f", "null", "/dev/null",
]
else:
myCmd = [