Convert audio files to mp3 using ffmpeg

后端 未结 11 2061
太阳男子
太阳男子 2020-12-22 15:09

I need to convert audio files to mp3 using ffmpeg.

When I write the command as ffmpeg -i audio.ogg -acodec mp3 newfile.mp3, I get the error:

<         


        
11条回答
  •  北海茫月
    2020-12-22 15:40

    Never mind,

    I am converting my audio files to mp2 by using the command:

    ffmpeg -i input.wav -f mp2 output.mp3
    

    This command works perfectly.

    I know that this actually converts the files to mp2 format, but then the resulting file sizes are the same..

提交回复
热议问题