We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68c433c commit 365afeeCopy full SHA for 365afee
bulktranscode_core.py
@@ -51,6 +51,8 @@ def process_file(input_file, output_file, mode, target_codec):
51
if mode == "transcode":
52
if target_codec == "opus":
53
subprocess.run(["opusenc",input_file,output_file])
54
+ elif input_file[-4:] == "opus":
55
+ subprocess.run(["ffmpeg","-i",input_file,"-map_metadata","0:s:a:0",output_file], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
56
else:
57
subprocess.run([
58
'ffmpeg', '-i', input_file,
0 commit comments