added all scripts

This commit is contained in:
liph
2025-12-19 22:56:37 +00:00
parent 0a8de06bc3
commit 3992fb9464
12 changed files with 689 additions and 0 deletions

17
m3u8.sh Executable file
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"