Created
May 19, 2014 03:33
-
-
Save Teaonly/2cd2734d9d9383068af3 to your computer and use it in GitHub Desktop.
使用ffmpeg合并文件
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
采用文件列表的方法: | |
1. 编辑file.list | |
``` | |
file 1.mp4 | |
file 2.mp4 | |
``` | |
ffmpeg 命令 | |
``` | |
ffmpeg -v 0 -y -f concat -i file.list -vcodec libx264 -crf 20 -acodec libfaac out.mp4 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment