使用flv
将mp4
转换为FFMPEG
转换时,显示以下错误
[aac @ 0x2b4b640] The encoder 'aac' is experimental but experimental codecs are not enabled, add '-strict -2' if you want to use it.
最佳答案
实际上不够,无法将-strict -2
添加到命令行。添加-strict -2
的位置非常重要,但是不幸的是,错误消息中没有对此进行解释。它应该在最后一个参数之前,即如下所示:
ffmpeg -i infile -strict -2 outfile
关于ffmpeg - “The encoder ' aac ' is experimental but experimental codecs are not enabled”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32931685/