Step-by-step instructions
- 1
Convert with FFmpeg
Install FFmpeg. Single file: `ffmpeg -i input.wav -c:a libopus -b:a 128k output.opus`. For speech (podcast, voice): `ffmpeg -i input.wav -c:a libopus -b:a 32k output.opus` (Opus at 32 kbps rivals MP3 at 128 kbps for speech). For music: 96–128 kbps is transparent. Batch: `for f in *.wav; do ffmpeg -i "$f" -c:a libopus -b:a 128k "${f%.wav}.opus"; done`.
Go to converter - 2
Choose bitrate by use case
Opus bitrate recommendations: voice/speech at 8–32 kbps, music at 64–128 kbps (transparent), high-quality music at 192 kbps+. Opus at 64 kbps sounds as good as MP3 at 128 kbps. At 128 kbps Opus is effectively transparent (indistinguishable from lossless for most content). VBR (variable bitrate) is the default and preferred: `ffmpeg -i input.wav -c:a libopus -vbr on -b:a 128k output.opus`.
- 3
Use OGG container for compatibility
Opus is typically stored in an OGG container (.ogg extension), though it can also use .opus. For web audio, use .opus: `ffmpeg -i input.wav -c:a libopus -b:a 128k output.opus`. Browsers support .opus via the audio/ogg; codecs=opus MIME type. Discord, WebRTC, and most modern media players support Opus natively.
- 4
Verify and distribute
Play the Opus file in VLC, Firefox, Chrome, or a modern media player to verify quality. Opus is supported natively by Chrome, Firefox, Edge, Android, and all WebRTC applications. For maximum compatibility (including older iOS/Safari), provide an AAC fallback. Safari supports Opus since version 16.2.
Why convert WAV to Opus?
Opus is the most efficient audio codec available — better than MP3, AAC, and OGG Vorbis at every bitrate. Converting WAV audio to Opus creates the smallest possible files while maintaining excellent quality for web, VoIP, and streaming delivery.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Is Opus better than MP3 and AAC?
Can browsers play Opus audio?
What is the difference between Opus and OGG?
No account. No upload. Works in any browser.