Skip to content
Back to Libraries

FFmpeg.wasm

14k

FFmpeg compiled to WebAssembly for browser video/audio processing

⚡ WASM🔥 TrendingWASM Runtime
License
MIT
Released
2019
Stars
14k

Use Cases

Video editing, format conversion, thumbnail extraction, audio processing in the browser without server

Code Example

import { FFmpeg } from '@ffmpeg/ffmpeg';
const ffmpeg = new FFmpeg();
await ffmpeg.load();
await ffmpeg.exec(['-i', 'input.mp4', 'output.gif']);

Related Libraries