Skip to content
>_ TrueFileSize.com

Silence Audio Files — Blank Audio Downloads

Download free silence audio files from 1 second to 1 hour in both MP3 and WAV formats. Pure silence — zero amplitude, no noise. Perfect for podcast editing, testing audio detection systems, and adding padding to video timelines.

WAV silence files (uncompressed)

silence-1sec.wav

172 KB

1s · 44100Hz · stereo · 16-bit

wav
Download

silence-5sec.wav

861 KB

5s · 44100Hz · stereo · 16-bit

wav
Download

silence-30sec.wav

5.05 MB

30s · 44100Hz · stereo · 16-bit

wav
Download

silence-1min.wav

10.09 MB

60s · 44100Hz · stereo · 16-bit

wav
Download

silence-5min.wav

50.47 MB

300s · 44100Hz · stereo · 16-bit

wav
Download

silence-1hour.wav

606 MB

3600s · 44100Hz · stereo · 16-bit

wav
Download

MP3 silence files (compressed)

silence-1sec.mp3

16.8 KB

1s · 128kbps · 44100Hz · stereo

mp3
Download

silence-5sec.mp3

79.2 KB

5s · 128kbps · 44100Hz · stereo

mp3
Download

silence-30sec.mp3

470 KB

30s · 128kbps · 44100Hz · stereo

mp3
Download

silence-1min.mp3

938 KB

60s · 128kbps · 44100Hz · stereo

mp3
Download

silence-5min.mp3

4.58 MB

300s · 128kbps · 44100Hz · stereo

mp3
Download

silence-1hour.mp3

54.93 MB

3600s · 128kbps · 44100Hz · stereo

mp3
Download

Use cases for silence audio files

  • Podcast editing — insert pauses between segments
  • Testing audio detection and voice activity detection (VAD)
  • Adding padding/spacing to video editing timelines
  • Testing audio player behavior with silent content
  • Placeholder audio tracks for video files
  • Testing audio level meters and visualization with zero input
  • Ringtone replacement — silent ringtone for muting notifications

WAV vs MP3 for silence — which to use?

Use WAV when

  • +Professional audio/video editing (DAWs)
  • +Lossless quality is required
  • +Concatenating with other WAV files
  • +File size doesn't matter

Use MP3 when

  • +File size matters (MP3 is ~50x smaller)
  • +Web/app audio playback
  • +Silent ringtone or notification
  • +Email attachment size limits

Generate silence yourself

FFmpeg (any duration)

# 60 seconds of silence as WAV
ffmpeg -f lavfi -i anullsrc=r=44100:cl=stereo -t 60 silence-1min.wav

# 60 seconds of silence as MP3
ffmpeg -f lavfi -i anullsrc=r=44100:cl=stereo -t 60 -c:a libmp3lame -b:a 128k silence-1min.mp3

Python

import wave, struct

duration = 60  # seconds
sample_rate = 44100
with wave.open('silence.wav', 'w') as f:
    f.setnchannels(2)
    f.setsampwidth(2)
    f.setframerate(sample_rate)
    f.writeframes(b'\x00' * sample_rate * 4 * duration)

Technical specifications

ContentPure silence (zero amplitude)
WAV formatPCM 16-bit, 44100 Hz, stereo
MP3 format128 kbps CBR, 44100 Hz, stereo
Durations1s, 5s, 30s, 1min, 5min, 1hour
Noise floorDigital zero (no noise)

Frequently Asked Questions

Other audio formats