Video Converter (Local-only)
Convert video/audio locally in your browser using ffmpeg.wasm. No uploads. WorkerFS helps reduce input copying.
Convert Video / Audio (ffmpeg.wasm)
Value prop: No Cloud Upload Limits (no uploads). Reality check: very large files still depend on browser/device memory.
How-to Guide
- Click “Load FFmpeg” to initialize (first load downloads the WASM core).
- Select a video or audio file (read locally).
- Choose an output format and click “Convert”.
- Download the result.
Tip: for large files, close other tabs. iOS Safari has stricter memory limits and may fail more easily.
Privacy FAQ
Technical Explanation (WorkerFS)
A naive approach copies the full input into WASM memory before processing. WorkerFS can mount the browser File object as a readable file so ffmpeg can read more like streaming, reducing peak memory from input copying.
Note: this does not mean unlimited size. The output still lands in an in-memory filesystem, and large outputs consume a lot of memory.
Related guides (Wiki)
Understand common formats and pick the right output for compatibility.