updated scripts

This commit is contained in:
liph
2026-04-30 13:13:42 +00:00
parent 3992fb9464
commit fd8e28ed14
60 changed files with 2770 additions and 0 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Ask for the final filename first
echo "=== Video Downloader (yt-dlp + aria2c) ==="
read -p "Enter the final filename (without extension): " filename
# Then ask for the m3u8 URL
read -p "Enter the m3u8 URL: " url
# Download using yt-dlp with aria2c
echo "Starting download..."
yt-dlp --external-downloader aria2c \
--external-downloader-args "aria2c:-x 16 -s 16" \
-o "${filename}.%(ext)s" \
"$url"
echo "Download complete: ${filename}.mp4"