FormatDrop
How-To Guide

How to Reduce Audio File Size

Audio file size is primarily determined by bitrate (bits per second) and duration. Reducing file size means either converting to a more efficient codec (AAC or Opus instead of MP3), reducing bitrate, or both. This guide shows the best approaches depending on your audio type and acceptable quality trade-offs.

Step-by-step instructions

  1. 1

    Identify your audio type and minimum acceptable quality

    Music (streaming, sharing): 128-192 kbps AAC or 96-128 kbps Opus (equivalent to 192 kbps MP3). Podcasts/voice: 64-96 kbps AAC mono is excellent quality. Ringtones: 64-128 kbps AAC. Sound effects: 64-96 kbps AAC stereo. Background music for video: 128 kbps AAC stereo.

    Go to converter
  2. 2

    Method 1: Convert to AAC with lower bitrate

    ffmpeg -i input.mp3 -c:a aac -b:a 128k output.m4a. For voice/podcast: ffmpeg -i input.mp3 -c:a aac -b:a 64k -ac 1 output.m4a (mono, 64 kbps — excellent for voice). Converting from MP3 at 320k to AAC at 128k typically reduces file size by 60-65% with very minor quality change for casual listening.

  3. 3

    Method 2: Convert to Opus (best quality per bit)

    ffmpeg -i input.mp3 -c:a libopus -b:a 96k output.opus. 96 kbps Opus sounds as good as 192 kbps MP3. This converts a 320 kbps MP3 to something 70% smaller that sounds better. Note: Opus files (.opus or .ogg) have less device support than AAC.

  4. 4

    Method 3: Trim silence and normalize

    Silence removal: ffmpeg -i input.mp3 -af silenceremove=1:0:-50dB output.mp3 (removes leading and trailing silence). Normalize audio: ffmpeg -i input.mp3 -af loudnorm output.mp3. For podcasts: silence removal at the start and end and between segments can reduce file size by 5-20%.

Why convert MP3 to AAC?

Audio bitrate is the most direct control over audio file size. A 3-minute song at 320 kbps MP3 is 7.2MB. The same song at 128 kbps AAC (equivalent perceived quality) is 2.9MB. Converting to Opus at 96 kbps is 2.2MB. For podcasts where voice is the only content: mono 64 kbps AAC produces a 3-minute clip at just 1.4MB — excellent quality for speech.

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

What is the minimum bitrate for good audio quality?
MP3: 192 kbps for music, 96 kbps for voice. AAC: 128 kbps for music, 64 kbps for voice. Opus: 96 kbps for music, 32-48 kbps for voice. Below these rates: audible artifacts become noticeable. These thresholds are for typical speakers/headphones — audiophile listening on high-end equipment may require higher rates.
Does reducing audio bitrate permanently damage the file?
Yes — reducing bitrate from a lossy source (MP3, AAC) creates generation loss: quality is reduced and cannot be recovered. Always keep a high-quality backup before reducing bitrate. If you have a lossless source (WAV, FLAC): encode to the target bitrate from lossless for best results rather than from an already-lossy file.
Convert MP3 to AAC Now — Free

No account. No upload. Works in any browser.