Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ##!/data/data/com.termux/files/usr/bin/zsh
- url=$1
- echo "Do what with $1 ?"
- echo "v) Download video file with yt-dlp"
- echo "m) Download music file with yt-dlp"
- echo "x) Download video and extract audio to file with yt-dlp"
- echo "w) Run wget"
- echo "c) Cancel operation"
- read CHOICE
- case $CHOICE in
- v)
- yt-dlp -o "~/url-handler-temp/%(title)s.%(ext)s" --embed-chapters $url
- sudo cp /data/data/com.termux/files/home/url-handler-temp/* /storage/????-????/Videos/
- rm ~/url-handler-temp/*
- ;;
- m)
- yt-dlp -o "~/url-handler-temp/%(title)s.%(ext)s" -f bestaudio[ext=m4a] $url
- sudo cp /data/data/com.termux/files/home/url-handler-temp/* /storage/????-????/Music/
- rm ~/url-handler-temp/*
- ;;
- x)
- yt-dlp -o "~/url-handler-temp/%(title)s.%(ext)s" -x --audio-format m4a --audio-quality 256k $url
- sudo cp /data/data/com.termux/files/home/url-handler-temp/* /storage/????-????/Music/
- rm ~/url-handler-temp/*
- ;;
- w)
- cd ~/storage/shared/Download
- wget $url
- cd ~
- ;;
- c)
- echo "Cancelled"
- ;;
- esac
- read -r -p "Press return to exit" key
- echo "Exiting..."
Add Comment
Please, Sign In to add comment