Audio recipe
Extract MP3 from Video with FFmpeg
Create an MP3 audio file from a video file.
Command
Use this when
- You need an audio-only MP3 from a video.
- You want a widely compatible audio file.
- You are preparing audio for transcription, sharing, or editing.
Customize it
Generate FFmpeg commands to extract MP3, AAC, WAV, FLAC, or original audio streams from video files.
Open Extract AudioParameter breakdown
-vn
Drops the video stream from the output.
-c:a libmp3lame
Encodes audio as MP3.
-b:a 192k
Sets a common MP3 bitrate.