Save soundtrack or voiceover from a video
Pull dialogue, music, narration, or a voiceover track from creator footage before editing, remixing, or publishing it elsewhere.
Extract audio from video for podcasts, interviews, subtitles, transcription, music edits, and voice notes. Use MP3 for compatibility, Opus for speech, FLAC or WAV when you need lossless audio.
Sign in to run this tool — 100 free credits on signup.
Pull dialogue, music, narration, or a voiceover track from creator footage before editing, remixing, or publishing it elsewhere.
Prepare interviews, user research calls, webinars, and customer videos for speech-to-text, summaries, subtitles, or AI workflows.
Run the same FFmpeg audio extraction through the API for media apps, UGC moderation, podcast tools, and backend processing queues.
Quick reference for what each parameter actually does.
Drop a video from your computer, or paste a public video link.
High quality MP3 for music. Speech for podcasts and voice. Lossless if you'll edit or remix it. Or tweak the encoder yourself in Advanced.
We strip the video stream and encode the audio to your chosen format — usually 5–15 seconds.
Temporary download link as soon as it's done. Files auto-delete after 7 days.
High quality for music. Compatible if file size matters and you're sending it to someone. Speech for podcasts, lectures, interviews — Opus at 64k mono sounds great for voice at a fraction of MP3's size. Lossless if you'll edit, master, or archive the audio.
Copy pulls the existing audio bitstream out of the video container without re-encoding — instant and zero quality loss. The catch: the output codec is whatever was in the original (usually AAC), so you can't pick a target format.
FLAC is lossless and decodes to bit-identical PCM, but compresses to about half the size. The only reason to pick WAV is if some downstream tool requires it — switch the encoder in Advanced.
We extract the default track. If you need a specific track (e.g. a non-default language), use the API directly with -map 0:a:1 to pick track index 1.
Not in this tool — but two API calls do it: trim first, extract-audio second. Or use the API with -ss / -to combined with -vn in one call.
Sign up for 100 free credits. A typical extraction costs 1–3 credits depending on length. No subscription, top up as you go.
This tool is a wrapper around our REST API — three lines of curl will do the same job in your build pipeline or backend.
View API docscurl -X POST https://api.ffhub.io/v1/tasks \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d {
"command": "-i https://you.com/in.mp4 -vn -ar 44100 -c:a libmp3lame -b:a 320k output.mp3"
}