Step-by-step instructions
- 1
Convert with FFmpeg
Install FFmpeg. Single file: `ffmpeg -i input.wav -c:a libvorbis -q:a 6 output.ogg`. Quality levels run from -1 (worst) to 10 (best) — 4–6 is excellent for most uses. For a specific bitrate: `ffmpeg -i input.wav -c:a libvorbis -b:a 192k output.ogg`. Batch: `for f in *.wav; do ffmpeg -i "$f" -c:a libvorbis -q:a 5 "${f%.wav}.ogg"; done`.
Go to converter - 2
Convert with Audacity
Open the WAV in Audacity. Go to File → Export → Export as OGG Vorbis. Set the quality slider (5–7 is good). Click Save. Audacity produces high-quality OGG output and is free on all platforms. Good choice if you want to preview and trim audio before converting.
- 3
Choose the right quality setting
OGG Vorbis quality scale: q4 is approximately 128 kbps, q5 is approximately 160 kbps, q6 is approximately 192 kbps, q8 is approximately 256 kbps. For web audio and game sounds, q4–q5 is plenty. For music listening, q6–q8. Higher quality = larger files. OGG at q5 is typically 80–90% smaller than the WAV source.
- 4
Use the OGG file
OGG is supported by all major browsers (Chrome, Firefox, Edge, Safari 14+) for HTML5 audio. Unity and Godot import OGG natively. For web use, reference the OGG file in an HTML5 audio element with a fallback MP3. Linux and Android support OGG natively; iOS and macOS support OGG in modern versions but prefer AAC.
Why convert WAV to OGG?
OGG reduces WAV files by 80–90% while maintaining excellent quality — essential for web delivery, game audio, and any scenario where file size matters. It's the preferred audio format for open-source games and Linux-based systems.
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 OGG better than MP3?
Does WAV to OGG lose quality?
Can browsers play OGG files?
No account. No upload. Works in any browser.