Step-by-step instructions
- 1
Convert with FFmpeg (all platforms)
ffmpeg -i input.ogg output.wav. For 16-bit stereo at 44.1 kHz: ffmpeg -i input.ogg -ar 44100 -ac 2 -sample_fmt s16 output.wav.
Go to converter - 2
Convert with Audacity
Open Audacity → File → Import → Audio → select OGG → File → Export → Export as WAV → 'WAV (Microsoft) signed 16-bit PCM' → Save.
- 3
Batch convert OGG to WAV
Mac/Linux: for f in *.ogg; do ffmpeg -i "$f" "${f%.ogg}.wav"; done.
Why convert OGG to WAV?
WAV is the uncompressed audio format expected by most DAWs and professional video editors. Converting OGG to WAV makes your audio compatible with tools that require PCM input.
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
Why is OGG to WAV file much larger?
Should I use WAV or FLAC after converting from OGG?
No account. No upload. Works in any browser.