Frequently asked
Is this really free, and is there a file size limit?
It is free with no account and no watermark. The practical ceiling is 200 MB, which is a memory limit rather than a policy one — the whole file is held in the browser tab while it works. Past that, the ViralMint desktop app runs the same FFmpeg natively with no cap.
Does converting lose quality?
Not when the conversion is a rewrap, which covers most pairs: MP4 to MKV, MOV to MP4, AVI to MKV and so on just move the same encoded streams into a different container, so the output is bit-for-bit the same video. A real re-encode does lose a generation — that happens when you convert to WebM, or out of a container whose codec the target does not accept. The page tells you which one you are about to do.
Why is converting to WebM slower than converting to MKV?
Because only one of them is a real conversion. MKV accepts the H.264 video your file already contains, so that is a rewrap — measured at 0.3 seconds for a five-second 720p clip. WebM is defined to hold VP8 or VP9 only, so the picture has to be decoded and re-encoded from scratch; the same clip takes about 1.8 seconds. Both are fast, but the gap grows with length: a rewrap is roughly constant, a re-encode scales with the duration of the video.
Which formats can it read?
MP4, MOV, M4V, MKV, WebM and AVI in; MP4, MOV, MKV and WebM out. That is deliberately a short list of formats people actually have, rather than the hundreds of legacy codecs the server-side converters advertise — those need a server precisely because nobody can ship every decoder to a browser.
What is the 31 MB download the first run mentions?
FFmpeg itself, compiled to WebAssembly. It is fetched once, cached by the browser, and shared with the other in-browser tools on this site — so the first conversion pays for it and trimming, compressing or extracting audio afterwards costs nothing extra.
Can it convert video to MP3?
That is a separate tool, because it is a different job — see the audio extractor, which pulls the soundtrack out as MP3, M4A or WAV. Extracting AAC audio from an MP4 into an M4A is itself a stream copy, so it is instant and lossless.