Step-by-step instructions
- 1
What FormatDrop can do today
FormatDrop has no MP3 to MP3 tool yet, and the converter runs at one fixed quality with no bitrate control. An in-browser MP3 compressor with a bitrate setting is coming soon. Two routes work today. First, convert the file at formatdrop.com/mp3-to-m4a. It re-encodes to AAC at a fixed 192 kbps, so a 256 or 320 kbps MP3 comes out clearly smaller, while a 128 kbps MP3 would get bigger. Second, if you still have the lossless WAV original, encode from it at formatdrop.com/wav-to-mp3, also at a fixed 192 kbps. Both run on your device and nothing is uploaded. The free tier takes 5 files at a time, 10 MB each, and Pro raises the size limit to 500 MB. To pick an exact bitrate for an MP3 you already have, use FFmpeg or Audacity below.
Go to converter - 2
Understand MP3 bitrates and quality trade-offs
320 kbps: highest quality (~2.4 MB/min). 192 kbps: excellent (~1.4 MB/min). 128 kbps: acceptable (~1 MB/min). 96 kbps: audible loss, fine for speech (~0.7 MB/min). 64 kbps: poor quality, smallest size (~0.5 MB/min). For music: 192 kbps minimum. For podcasts: 96–128 kbps.
- 3
Compress with FFmpeg (all platforms)
CBR: ffmpeg -i input.mp3 -c:a libmp3lame -b:a 128k output.mp3. VBR (better): ffmpeg -i input.mp3 -c:a libmp3lame -q:a 5 output.mp3. VBR q:a 0 = highest quality, q:a 9 = lowest.
- 4
Compress with Audacity
Open Audacity → Import MP3 → File → Export as MP3 → set lower bitrate → Save.
- 5
Batch compress multiple MP3 files
for f in *.mp3; do ffmpeg -i "$f" -c:a libmp3lame -q:a 5 "compressed_${f}"; done. Always compress to a new file rather than overwriting the original.
Why compress an MP3?
Compressed MP3 files load faster as email attachments, use less storage, and transfer more quickly. Re-encoding at a lower bitrate is sometimes necessary when file size constraints are strict.
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
Can I compress MP3 without quality loss?
What is the smallest MP3 that still sounds acceptable?
No account. No upload. Works in any browser.