Try it now

The audio extraction tool runs the same browser-local engine described on this page.

Open the Video to MP3 tool

Why this matters

This page does the conversion in your browser using FFmpeg WebAssembly. After the first time you load the page, the conversion code is cached. From that point on the conversion has no network dependency: no upload, no API call, no waiting for a server response.

For frequent use (extracting audio from recorded talks, lectures, or podcast episodes) the offline-capable workflow is dramatically faster end-to-end.

What you actually get

Conversion code lives in the cached page

The FFmpeg WebAssembly encoder caches in your browser on first visit. After that, the encoder is local and the conversion needs no network.

MP3 output by default

The page produces standard MP3 files at a configurable bitrate. The file plays in every media player and uploads to every podcast host.

Stream copy when possible

If the source video has an MP3-compatible audio track, the tool extracts it without re-encoding for near-instant conversion and maximum quality.

Useful on planes and in transit

Pull MP3s out of conference recordings on the flight back, when network is either nonexistent or punitively expensive.

How to convert video to MP3 offline

01 Load once online

Visit the page while connected. The browser caches the FFmpeg WebAssembly module that does the conversion.

02 Disconnect

Go offline. The page remains functional from the cache; no network is needed.

03 Drop the video

Drag the source video in. The browser reads it from disk into memory.

04 Convert to MP3

Pick a bitrate and run the conversion. The MP3 file is saved to your downloads folder, all offline.

Frequently asked questions

Does video-to-MP3 conversion work fully offline?

Yes, after the first page load. The FFmpeg WebAssembly module that performs the conversion downloads once and caches in your browser. Subsequent conversions run against the cached module with no network calls.

What MP3 bitrate is the default?

192 kbps, which is a good balance of file size and audio quality for spoken word and most music. The tool offers 128, 160, 192, 256, and 320 kbps options for cases that need higher fidelity.

Can I batch-convert multiple videos?

The tool processes one file at a time. For multiple files, drop each one in sequence; each conversion uses the same cached encoder so there is no per-job overhead.

Will it work in a browser tab that was open before going offline?

Yes, as long as the page has already loaded once. A tab opened fresh while offline would need the cache to already exist; if it does, the tab loads from cache and works normally.

How does this compare to extracting via FFmpeg on the command line?

It uses the same FFmpeg, just compiled for the browser. The output is byte-identical for most inputs. The browser version is convenient for one-offs without installing anything; the command-line version is better for scripted batch jobs.

Related Tools and Resources

Video to MP3

The actual conversion tool.

Private Audio Extractor

Privacy framing for general audio extraction.

Audio Processing Hub

Other audio tools.

Offline Video Compressor

Offline-capable compression for video.