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

前端 未结 5 1650
無奈伤痛
無奈伤痛 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:47

    Try following command :

    ffmpeg -i Inputfile.flv -vcodec h264 -acodec aac -strict -2 Filename.mp4
    

    You can use this command to convert any type of video file into mp4 with x264 and with same quality.

    I have tried so many ways but this worked for me like a charm. ;)

提交回复
热议问题