mirror of
https://github.com/CoolnsX/repos_scripts.git
synced 2025-12-20 07:15:20 +05:30
15 lines
1014 B
Bash
Executable File
15 lines
1014 B
Bash
Executable File
#!/bin/sh
|
|
# download/stream high quality mp3 music from youtube using ytmp3.com site
|
|
#this script give link which can be used to download or stream music
|
|
|
|
[ -z "$*" ] && id=$(printf "" | dmenu -p "Paste yt-link(ctrl + y):") || id=$*
|
|
id=$(printf "$id" | cut -d"=" -f2 | cut -d"/" -f4)
|
|
printf "\033[1;34mFetching page"
|
|
token=$(curl -s "https://ytmp3x.com/$id" | sed -nE 's/.*token":"(.*)","adg.*/\1/p')
|
|
printf "\33[2K\r\033[1;35mFetching tokens"
|
|
[ -z "$token" ] || token2=$(curl -s -X POST -H "X-Requested-With:XMLHttpRequest" 'https://ytmp3x.com/ajax' -d "purpose=audio&token=$token" | sed -nE 's/.*audio":"(.*)"\}/\1/p')
|
|
printf "\33[2K\r\033[1;36mFetching mp3 link"
|
|
[ -z "$token2" ] || url=$(curl -s -X POST -H "X-Requested-With:XMLHttpRequest" "https://ytmp3x.com/ajax" -d "purpose=download&token=$token2&b=320&r=https://ytmp3x.com/$id" | tr -d '\\' | sed -nE 's/.*mp3url":"(.*)"\}/\1/p')
|
|
[ -z "$url" ] && printf "\33[2K\r\033[1;31m unable to fetch mp3 link\033[0m" && exit 0
|
|
printf "\32[2K\r\033[0m %s\n" "$url"
|