ffmpeg 生成的 mp4 没有声音
ffmpeg genereated mp4 have no sound
我有一个带有两个音频通道的 mp4 文件,如下所示。
然后我用ffmpeg -i 70_1.mp4 -ss 00:00:00 -t 00:00:10 -hide_banner 777.mp4
切了一个切片,但是生成的文件没有声音
默认stream selection behavior is to choose one stream per stream type, so you have to tell it you want all of the streams with the -map
option:
ffmpeg -i 70_1.mp4 -ss 00:00:00 -t 00:00:10 -map 0 777.mp4
我有一个带有两个音频通道的 mp4 文件,如下所示。
然后我用ffmpeg -i 70_1.mp4 -ss 00:00:00 -t 00:00:10 -hide_banner 777.mp4
切了一个切片,但是生成的文件没有声音
默认stream selection behavior is to choose one stream per stream type, so you have to tell it you want all of the streams with the -map
option:
ffmpeg -i 70_1.mp4 -ss 00:00:00 -t 00:00:10 -map 0 777.mp4