Step-by-step instructions
- 1
FFmpeg (command line)
Convert to AAC in M4A container: `ffmpeg -i input.ogg -c:a aac -b:a 192k output.m4a`. For better quality: `ffmpeg -i input.ogg -c:a libfdk_aac -b:a 192k output.m4a` (if libfdk_aac is available). Batch: `for f in *.ogg; do ffmpeg -i "$f" -c:a aac -b:a 192k "${f%.ogg}.m4a"; done`.
Go to converter - 2
VLC (GUI, all platforms)
VLC → Media → Convert/Save → add OGG file → set profile to 'Audio - AAC (MP4)'. Click wrench to configure: set bitrate to 192 or 256 kbps. Name output .m4a. Click Start.
- 3
fre:ac (Windows/Mac/Linux)
Open fre:ac → add OGG files → set output format to 'MPEG-4 Audio (AAC)' → set bitrate to 192 kbps → Convert. Handles metadata transfer and batch conversion.
- 4
Audacity (manual quality control)
Open Audacity → Import OGG. File → Export → Export as M4A (AAC). Install the FFmpeg library for Audacity if AAC export isn't available. Audacity lets you inspect the waveform before export.
Why convert OGG to AAC?
OGG Vorbis is Linux's native audio format but doesn't play on Apple devices. AAC is Apple's native format and the streaming standard — the conversion is a compatibility bridge.
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
Does OGG to AAC conversion lose quality?
Can iOS devices play OGG files at all?
What's the best AAC bitrate for OGG conversion?
No account. No upload. Works in any browser.