diff --git a/index.html b/index.html index 91fcee6..6591c7f 100644 --- a/index.html +++ b/index.html @@ -755,6 +755,45 @@ + + +
ffmpeg -i input_file -filter_complex "[0:a:0][0:a:1]amerge[out]" -map 0:v -map "[out]" -c:v copy -shortest output_file
This command combines two audio tracks present in a video file + into one stream. It can be useful in situations where a downstream + process, like YouTube's automatic captioning, expect one audio + track. To ensure that you’re mapping the right audio tracks run + ffprobe before writing the script to identify which tracks are + desired. More than two audio streams can be combined by extending the + pattern present in the -filter_complex option.
+