320kbps
← Back to presets

Video → MP3

Extract audio from a video file.

input.mp4

Selected file

Ready

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.

-i

Specifies the input video file.

-codec:a libmp3lame

Uses the LAME MP3 encoder for the audio stream.

-b:a 320k

Sets the audio bitrate to 320 kbps.