Download Video / Music
ID:
<%= v %> — Open the watch pageSelect a format to download. Muxed = audio+video. “Video-only” needs a separate audio track if you plan to mux.
Muxed formats
Audio-only formats
Video-only formats
No audio. You may need to mux with an audio track.
Tip: if a download fails, try another container (MP4 vs WEBM) or a different quality.
Combine video-only + audio-only (mux)
Pick one of these quick methods. They don’t re-encode, so quality stays the same.
FFmpeg — MP4 output
ffmpeg -i video.mp4 -i audio.m4a -c copy -map 0:v:0 -map 1:a:0 output.mp4
Use when your video is MP4 (H.264) and audio is M4A/AAC.
FFmpeg — WEBM output
ffmpeg -i video.webm -i audio.webm -c copy -map 0:v:0 -map 1:a:0 output.webm
Use when both tracks are WEBM (VP9/AV1 + Opus).
FFmpeg — mixed containers
ffmpeg -i video.webm -i audio.m4a -c copy -map 0:v:0 -map 1:a:0 output.mkv
If containers differ, mux to mkv for best compatibility.
Windows (drag-and-drop)
1) Install FFmpeg (add to PATH) 2) Put video and audio next to each other 3) Open Terminal in that folder and run one of the commands above
GNU/Linux / macOS
# Example ffmpeg -i video.mp4 -i audio.m4a -c copy -map 0:v:0 -map 1:a:0 output.mp4
Android (Termux)
pkg install ffmpeg cd /sdcard/Download ffmpeg -i video.webm -i audio.webm -c copy -map 0:v:0 -map 1:a:0 output.webm