以下命令在OS X中正常工作:
ffmpeg -f concat -i videos_playlist.txt -c copy final.mkv
但是当我尝试在ubuntu上运行它时,我得到以下结果:
Unknown input format: 'concat'
知道我缺少什么或可能的解决方法吗?
OS X build:
ffmpeg version 1.2.1 Copyright (c) 2000-2013 the FFmpeg developers
built on Aug 8 2013 11:49:17 with Apple LLVM version 4.2 (clang-425.0.24) (based on LLVM 3.2svn)
Ubuntu build:
ffmpeg version 0.10.8-7:0.10.8-1~precise1 Copyright (c) 2000-2013 the FFmpeg developers
built on Sep 5 2013 14:56:20 with gcc 4.6.3
答案 0 :(得分:3)
你的ffmpeg版本太旧了。下载最近的Linux build of ffmpeg,或按照步骤guide to compile ffmpeg进行操作。
答案 1 :(得分:2)
错误“未知输入格式:'concat'”确认您的ffmpeg编译中未启用“concat
”格式。
使用命令
检查格式ffmpeg -formats
重新编译你的ffmpeg http://trac.ffmpeg.org/wiki/UbuntuCompilationGuide