5 min read
WebM to MP3: getting usable audio out of web video
WebM is a web delivery format, so its audio is already compressed. Converting it well means limiting the damage, not adding to it.
WebM turns up in documentary research, screen recordings, interviews captured over video calls and anything downloaded from a browser based tool. The audio inside is almost always Opus, sometimes Vorbis, and never uncompressed.
Opus is better than you think
Opus at 96 kbps holds up remarkably well on speech, better than MP3 at the same rate. If the source is an interview, the recording is usable for a documentary cut, and often for the final mix when there is no alternative.
Transcoding costs
Going Opus to MP3 is a second lossy encode. The artefacts of the first pass become source material for the second, and they stack. When the destination tool accepts WAV, decode to WAV instead and stop there.
- For editing: decode WebM to 48 kHz WAV and cut from that.
- For sending: MP3 at 192 kbps is fine and universally playable.
- For archiving research material: keep the original WebM as well.
Watch the sample rate
Opus works internally at 48 kHz. Anything claiming a 44.1 kHz WebM has been resampled somewhere. Extract at 48 kHz and your files sit natively alongside camera and recorder material.