移动端音视频开发

ffmpeg concat video and mix audi

2018-01-06  本文已影响1175人  ikaroskun

需求

将N个片段视频文件连接,并合并额外的音频文件

解决方案:

ffmpeg中,官网给出两种连接媒体文件(音频、视频、etc..)的解决方案。

对比而言, demuxer更加灵活一些,需要媒体文件是属于相同的编解码器,但是可以属于不同的容器格式(mp3,wav, mp4, mov, etc..).
protocol只适用于少数集中容器格式。

使用concat demuxer连接视频文件

demuxer从一个文本文件中读取文件或者其他指令的列表,然后注意的对他们进行解复用。就像把他们的数据包混合到一起。

步骤:

1.创建一个文件mylist.txt,包含你想要连接的所有文件,格式如下:

file 'path/to/file1'
file 'path/to/file2'
file 'path/to/file3'

其中的文件路径可以是相对路径或者是绝对路径。

2.ffmpeg命令

ffmpeg -f concat -safe 0 -i mylist.txt -c copy output

如果对应的路径为相对路径 参数-safe 0就不是必须的。

3.自动生成输入文本文件的

可以使用如下shell脚本生成。

# with bash or zsh for loop
for f in *.mp4; do echo "file '$f'" >> mylist.txt; done
# or with printf
printf "file '%s'\n" *.mp4 > mylist.txt

使用Concat protocol 连接视频文件

demuxer 是在文件流级别工作,而cancat protocol则是在文件级别操作。
可以将使用MPEG-2传输流的文件连接在一起。类似于在类unix系统上使用cat,或在windows系统上使用copy.

1.下面的命令连接了三个MPEG-2 TS文件,并将它们连接在一起,但不进行重编码

ffmpeg -i "concat:input1.ts|input2.ts|input3.ts" -c copy output.ts

2.使用中间文件

ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
ffmpeg -i "concat:intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc output.mp4

3.使用命名管道避免中间文件

mkfifo temp1 temp2
ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts temp1 2> /dev/null & \
ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts temp2 2> /dev/null & \
ffmpeg -f mpegts -i "concat:temp1|temp2" -c copy -bsf:a aac_adtstoasc output.mp4

所有MPEG格式(MPEG-4 Part 10 / AVC, MPEG-4 Part 2, MPEG-2 Video, MPEG-1 Audio Layer II,
MPEG-2 Audio Layer III (MP3), MPEG-4 Part III (AAC)).都可以转换成MPEG-TS.但是其中的一些参数需要改变,比如-bsf比特流过滤器需要改变

合并音频和视频

默认情况下,ffmpeg只会处理一个音频流和一个视频流,

先给命令:

ffmpeg -i input.mp4 -i input.mp3 -c copy -map 0:v:0 -map 1:a:0 output.mp4

相关解释:

我的解决方案:

由于需要合并片段文件和相应的音频文件,首先会拆离视频文件中的音频文件, 并与另外的音频文件混合。可以使用sox或者ffmpeg

然后在执行连接命令。

命令如下:

ffmpeg -hide_banner -f concat -i list.txt -i if.mp3 -c:v copy -c:a aac -strict -2 -map 0:v:0 -map 1:a:0  test.mp4

参考资料:

上一篇 下一篇

猜你喜欢

热点阅读