Step-by-step instructions
- 1
Convert with FFmpeg (recommended)
Install FFmpeg. Single file: `ffmpeg -i input.flac -c:a libvorbis -q:a 6 output.ogg`. Quality levels: q4 ≈ 128 kbps, q5 ≈ 160 kbps, q6 ≈ 192 kbps, q8 ≈ 256 kbps. Batch convert a folder: `for f in *.flac; do ffmpeg -i "$f" -c:a libvorbis -q:a 6 "${f%.flac}.ogg"; done`. q6 is an excellent default for music.
Go to converter - 2
Convert with Audacity
Open Audacity (free, cross-platform). Import the FLAC file: File → Import → Audio. Go to File → Export → Export as OGG Vorbis. Set the quality slider (5–7 is good for music). Click Save. Audacity lets you preview the audio before exporting.
- 3
Choose the right quality
For background music in games: q4–q5 (smaller files, good enough). For music streaming or playback: q6–q7 (transparent quality for most content). For archiving (though you should keep FLAC for this): q8–q10. Higher quality settings produce larger files. OGG at q6 is typically transparent — most listeners can't tell it from the lossless FLAC.
- 4
Use the OGG file
OGG is natively supported by Unity, Godot, HTML5 browsers (Chrome, Firefox, Edge, Safari 14+), Linux apps, and VLC. For web audio: `<audio src='audio.ogg'></audio>`. For games: add to the project's audio folder and reference by filename. Keep the original FLAC files as your master archive.
Why convert FLAC to OGG?
FLAC files are large — a 50-song lossless album can be 1–2 GB. OGG reduces this to 150–400 MB while sounding essentially identical. For game audio, web delivery, or mobile storage, OGG hits the ideal balance of quality and size.
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 good enough for music converted from FLAC?
Can I convert FLAC to OGG without FFmpeg?
Does FLAC to OGG preserve album art and metadata?
No account. No upload. Works in any browser.