Technical Troubleshooting
Fix Bilibili Video Download "No Sound" Problem
One of the most frequent complaints when downloading 1080p videos from Bilibili using generic tools is finding that the resulting MP4 video is completely silent.
Why Does This Happen? (The DASH Architecture)
Bilibili utilizes DASH (Dynamic Adaptive Streaming over HTTP) for all high-definition content (720p, 1080p, 4K, 8K). Unlike legacy streaming which stored video and audio in a single MP4 container, DASH intentionally transmits two independent streams:
- An isolated M4S Video Stream (visual frames only).
- An isolated M4S Audio Stream (soundtrack only).
When traditional scrapers download the video URL, they only fetch the visual stream, leaving the audio behind!
How BiliExtract Solves the Silent Video Issue
BiliExtract's engine queries the master play manifest. It inspects both the video track and the synchronized audio track:
- Identifies the matching audio stream bitrate (up to 320 kbps).
- Allows you to download the pure, crystal-clear audio soundtrack separately in the Audio tab.
- Provides combined MP4 streams or direct video streams with proxy headers.
Need both merged into a single file? If you download both tracks, you can instantly combine them with free tools like VLC or run a single FFmpeg command:
ffmpeg -i video.mp4 -i audio.mp3 -c:v copy -c:a aac output.mp4