From 53f2bd405c8d55d59df4606ce7e7ddb8676aa7d5 Mon Sep 17 00:00:00 2001 From: ashley Date: Wed, 20 Aug 2025 02:29:58 +0200 Subject: [PATCH] Update html/download.ejs --- html/download.ejs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/html/download.ejs b/html/download.ejs index c954580d..3e4b39ee 100644 --- a/html/download.ejs +++ b/html/download.ejs @@ -170,7 +170,7 @@

Download Video / Music

ID: <%= v %>Open the watch page
-

Select a format to download. Muxed = audio+video. “Video-only” needs a separate audio track if you plan to mux.

+

select a format to download :3 Muxed is audio+video and Video only needs a separate audio track if you plan to mux!

Thumbnail preview for the requested video @@ -220,7 +220,7 @@

Video-only formats

-

No audio. You may need to mux with an audio track.

+

No audio!! You may need to mux with an audio track :c

144p — MP4Very small
@@ -284,30 +284,30 @@
-
Tip: if a download fails, try another container (MP4 vs WEBM) or a different quality.
+
if a download fails try another container (MP4 vs WEBM) or a different quality :D
-

Combine video-only + audio-only (mux)

-

Pick one of these quick methods. They don’t re-encode, so quality stays the same.

+

How2 Combine video-only + audio-only (mux)

+

U can pick one of these methods!!

FFmpeg — MP4 output -
ffmpeg -i video.mp4 -i audio.m4a -c copy -map 0:v:0 -map 1:a:0 output.mp4
+
ffmpeg -i video.mp4 -i videoplayback.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
+
ffmpeg -i videoplayback.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
+
ffmpeg -i videoplayback.webm -i videoplayback.m4a -c copy -map 0:v:0 -map 1:a:0 output.mkv

If containers differ, mux to mkv for best compatibility.

@@ -322,14 +322,14 @@
GNU/Linux / macOS
# Example
-ffmpeg -i video.mp4 -i audio.m4a -c copy -map 0:v:0 -map 1:a:0 output.mp4
+ffmpeg -i video.mp4 -i videoplayback.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
+ffmpeg -i videoplayback.webm -i audio.webm -c copy -map 0:v:0 -map 1:a:0 output.webm