Convert audio files to mp3 using ffmpeg

后端 未结 11 2062
太阳男子
太阳男子 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:28

    You could use this command:

    ffmpeg -i input.wav -vn -ar 44100 -ac 2 -b:a 192k output.mp3
    

    Explanation of the used arguments in this example:

    • -i - input file

    • -vn - Disable video, to make sure no video (including album cover image) is included if the source would be a video file

    • -ar - Set the audio sampling frequency. For output streams it is set by default to the frequency of the corresponding input stream. For input streams this option only makes sense for audio grabbing devices and raw demuxers and is mapped to the corresponding demuxer options.

    • -ac - Set the number of audio channels. For output streams it is set by default to the number of input audio channels. For input streams this option only makes sense for audio grabbing devices and raw demuxers and is mapped to the corresponding demuxer options. So used here to make sure it is stereo (2 channels)

    • -b:a - Converts the audio bitrate to be exact 192kbit per second

提交回复
热议问题