ToTube Audio

Practical audio guide

How Duration, Bitrate, and Channels Determine Audio File Size

For lossy delivery audio, duration and total encoded bitrate explain most of the size. Channels and sample rate matter indirectly because they influence the bitrate needed for acceptable quality; uncompressed PCM follows a different exact formula.

By ToTube Audio Editorial TeamReviewed 2026-08-24

Key takeaways

  • Lossy size ≈ bitrate × duration ÷ 8.
  • PCM size = sample rate × bit depth × channels × duration ÷ 8.
  • Containers, tags, artwork, and encoder behavior add overhead.
  • A target-size workflow solves the lossy formula backward to choose bitrate.

Lossy compressed audio

A 192 kbps MP3 lasting 60 seconds uses about 1,440,000 bytes of audio payload: 192,000 × 60 ÷ 8. Multiply linearly for longer durations, then allow a small margin for headers and metadata.

Uncompressed PCM

A 44,100 Hz, 16-bit stereo recording uses 44,100 × 16 × 2 = 1,411,200 bits each second. Sixty seconds is about 10.58 MB in decimal units before small WAV headers—the same size measured in our reference fixture.

How channels influence a lossy encode

At a fixed total bitrate, stereo makes the encoder represent two channels within the same budget. Modern encoders share information efficiently, but truly mono speech can usually spend a low bitrate more effectively as mono.

Why the final number is approximate

Bitrate modes, codec frame sizes, muxing overhead, metadata, embedded artwork, and whether an encoder rounds to a supported bitrate all affect the file. Leave margin below a hard limit and verify the downloaded result.

Method and sources

Examples use controlled synthetic references so settings are reproducible and no private user audio is involved. Production runs FFmpeg 5.1.9; benchmark fixtures were generated and verified with FFmpeg 8.1.2.

Put this into practice

Continue learning