input.mp4
Selected file
FFmpeg command
ffmpeg -i 'input.mp4' -codec:a libmp3lame -b:a 320k 'output.mp3'About this command
Extracts the audio track from a video and encodes it as an MP3 file.
-iSpecifies the input video file.
-codec:a libmp3lameUses the LAME MP3 encoder for the audio stream.
-b:a 320kSets the audio bitrate to 320 kbps.