“The encoder 'aac' is experimental but experimental codecs are not enabled”

前端 未结 5 1655
無奈伤痛
無奈伤痛 2020-12-08 09:07

While converting flv to mp4 conversion using FFMPEG it\'s showing following error

[aac @ 0x2b4b640] The encoder \'aac\         


        
5条回答
  •  温柔的废话
    2020-12-08 09:25

    Like the message says, the native ffmpeg AAC audio encoder is experimental and you need to add -strict -2 or -strict experimental to your command use it. However, this encoder is no longer marked as experimental, so recent ffmpeg builds do not need to use this option.

    For the best results use libfdk_aac instead. You need to compile ffmpeg with this lib, see the compilation guide.

    To set the audio encoder use -c:a libfdk_aac.

提交回复
热议问题