ffmpeg 转换视频 The encoder 'aac' is experimental b
(2017-02-15 17:49:07)分类: 其他 |
ffmpeg -i input.flv output.mp4
报错 错误提示
The encoder 'aac' is experimental but experimental codecs are not enabled, add '-strict -2' if you want to use it.
正确处理
ffmpeg -i input.flv -strict -2 output.mp4
报错 错误提示
The encoder 'aac' is experimental but experimental codecs are not enabled, add '-strict -2' if you want to use it.
正确处理
ffmpeg -i input.flv -strict -2 output.mp4