Downloaded Video Has No Audio? Hereβs the Fix (2026)
You downloaded a video, it plays fine, but thereβs no sound. Here is why it happens and how to fix it in five proven ways.
Why Do Downloaded Videos Have No Audio?
The video plays but the audio is missing. This happens because platforms like YouTube use DASH streaming, which delivers video and audio as two independent streams. A downloader may grab only the video stream and leave the audio behind. Other causes: incompatible audio codecs (Opus, AC-3, Vorbis) your player cannot decode, or DRM that strips the audio channel.
Fix 1: Play in VLC Media Player
VLC bundles every major audio codec β Opus, AC-3, FLAC, Vorbis β out of the box. If your file has an audio track, VLC will play it. This is the fastest fix: download VLC (free), open your silent video, and if audio plays, the problem was simply your player lacking the right codec. No conversion needed.
Fix 2: Re-download with Audio Included
Use a downloader that merges both streams. Our YouTube downloader automatically combines video and audio with ffmpeg before serving the file. Choose a quality option that includes audio, and the resulting MP4 plays with full sound on any device. For audio only, use YouTube to MP3.
Fix 3: Re-mux Using ffmpeg
Re-muxing repackages your streams without re-encoding. If your file has valid audio but uses an incompatible codec like Opus, convert just the audio to AAC while copying the video losslessly:
ffmpeg -i silent-video.mp4 -c:v copy -c:a aac -b:a 192k output.mp4-c:v copy preserves video quality. -c:a aac converts audio to universally compatible AAC. Result plays everywhere β iPhone, Android, Windows, Mac, Smart TV.
Fix 4: Extract Audio Separately Then Merge
If your video has no audio stream at all, download the audio separately with YouTube to MP3 and merge with ffmpeg:
ffmpeg -i video.mp4 -i audio.mp3 -c:v copy -c:a aac -map 0:v:0 -map 1:a:0 merged.mp4Fix 5: Change Your Media Player
Default players have limited codec support. Windows Media Player lacks Opus and HEVC without paid packs. QuickTime and iPhone Photos only play AAC and PCM. Switch to VLC, MPC-HC, or IINA β all free, all include every common codec.
Why YouTube Separates Video and Audio β and How We Fix It
YouTube uses DASH (Dynamic Adaptive Streaming over HTTP), which splits video and audio into separate streams so the player can adjust quality dynamically. Every download from our YouTube downloader goes through an automated ffmpeg merge pipeline β we fetch both streams, merge them server-side, and deliver a single MP4 with both tracks intact. For platforms that provide a single multiplexed file (TikTok, Instagram, Twitter), we serve it as-is. You never get a silent file.
Frequently Asked Questions
Why does my downloaded MP4 have no audio on iPhone?
iPhone's Photos app only plays AAC and PCM audio. If your video uses Opus or AC-3, iOS silently skips the audio track. Use VLC for iOS or re-mux to AAC with ffmpeg.
Is there a way to add audio back without re-downloading?
Yes. Use ffmpeg: ffmpeg -i silent-video.mp4 -c:v copy -c:a aac output.mp4. Converts audio to AAC while keeping original video quality. No re-download needed.
Do all online video downloaders have this audio problem?
No. Many free downloaders grab only the video stream. Quality tools like ours automatically merge video and audio using ffmpeg before serving the file.
Can I just download the audio separately?
Yes. Use an audio-only option like YouTube to MP3, then merge both files with ffmpeg: ffmpeg -i video.mp4 -i audio.mp3 -c:v copy -c:a aac -map 0:v:0 -map 1:a:0 merged.mp4.