Changed audio conversion to only use one stream
0:a means take all audio streams of first file. 0🅰️0 means first stream of first file. 0🅰️0? means first audio stream of first file if available.
This commit is contained in:
parent
d1b55f134f
commit
9762150da6
1 changed files with 6 additions and 6 deletions
|
@ -51,7 +51,7 @@ func AvcConvertCommand(fileName, avcName, ffmpegBin, bitrate string, encoder Avc
|
||||||
"-vf", format,
|
"-vf", format,
|
||||||
"-c:v", string(encoder),
|
"-c:v", string(encoder),
|
||||||
"-map", "0:v:0",
|
"-map", "0:v:0",
|
||||||
"-map", "0:a",
|
"-map", "0:a:0?",
|
||||||
"-vsync", "vfr",
|
"-vsync", "vfr",
|
||||||
"-r", "30",
|
"-r", "30",
|
||||||
"-b:v", bitrate,
|
"-b:v", bitrate,
|
||||||
|
@ -69,7 +69,7 @@ func AvcConvertCommand(fileName, avcName, ffmpegBin, bitrate string, encoder Avc
|
||||||
"-i", fileName,
|
"-i", fileName,
|
||||||
"-c:v", string(encoder),
|
"-c:v", string(encoder),
|
||||||
"-map", "0:v:0",
|
"-map", "0:v:0",
|
||||||
"-map", "0:a",
|
"-map", "0:a:0?",
|
||||||
"-c:a", "aac",
|
"-c:a", "aac",
|
||||||
"-vf", format,
|
"-vf", format,
|
||||||
"-profile", "high",
|
"-profile", "high",
|
||||||
|
@ -92,7 +92,7 @@ func AvcConvertCommand(fileName, avcName, ffmpegBin, bitrate string, encoder Avc
|
||||||
"-vf", format,
|
"-vf", format,
|
||||||
"-c:v", string(encoder),
|
"-c:v", string(encoder),
|
||||||
"-map", "0:v:0",
|
"-map", "0:v:0",
|
||||||
"-map", "0:a",
|
"-map", "0:a:0?",
|
||||||
"-vsync", "vfr",
|
"-vsync", "vfr",
|
||||||
"-r", "30",
|
"-r", "30",
|
||||||
"-b:v", bitrate,
|
"-b:v", bitrate,
|
||||||
|
@ -110,7 +110,7 @@ func AvcConvertCommand(fileName, avcName, ffmpegBin, bitrate string, encoder Avc
|
||||||
"-pix_fmt", "yuv420p",
|
"-pix_fmt", "yuv420p",
|
||||||
"-c:v", string(encoder),
|
"-c:v", string(encoder),
|
||||||
"-map", "0:v:0",
|
"-map", "0:v:0",
|
||||||
"-map", "0:a",
|
"-map", "0:a:0?",
|
||||||
"-c:a", "aac",
|
"-c:a", "aac",
|
||||||
"-preset", "15",
|
"-preset", "15",
|
||||||
"-pixel_format", "yuv420p",
|
"-pixel_format", "yuv420p",
|
||||||
|
@ -137,7 +137,7 @@ func AvcConvertCommand(fileName, avcName, ffmpegBin, bitrate string, encoder Avc
|
||||||
"-i", fileName,
|
"-i", fileName,
|
||||||
"-c:v", string(encoder),
|
"-c:v", string(encoder),
|
||||||
"-map", "0:v:0",
|
"-map", "0:v:0",
|
||||||
"-map", "0:a",
|
"-map", "0:a:0?",
|
||||||
"-c:a", "aac",
|
"-c:a", "aac",
|
||||||
"-vf", format,
|
"-vf", format,
|
||||||
"-num_output_buffers", "72",
|
"-num_output_buffers", "72",
|
||||||
|
@ -159,7 +159,7 @@ func AvcConvertCommand(fileName, avcName, ffmpegBin, bitrate string, encoder Avc
|
||||||
"-i", fileName,
|
"-i", fileName,
|
||||||
"-c:v", string(encoder),
|
"-c:v", string(encoder),
|
||||||
"-map", "0:v:0",
|
"-map", "0:v:0",
|
||||||
"-map", "0:a",
|
"-map", "0:a:0?",
|
||||||
"-c:a", "aac",
|
"-c:a", "aac",
|
||||||
"-vf", format,
|
"-vf", format,
|
||||||
"-max_muxing_queue_size", "1024",
|
"-max_muxing_queue_size", "1024",
|
||||||
|
|
Loading…
Reference in a new issue