Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- ####################################
- #
- # START
- # g0ne_@p0stal <v1ral_ITS>
- # ImPerialTeKSolutions@outlook.com
- #
- ####################################
- needed_tool='youtube-dl yad kdialog ffmpeg'
- require_tools ()
- {
- local NOT_AVAIL=""
- for TOOL in $needed_tool; do
- if [ "`which $TOOL 2> /dev/null`" == "" ]; then NOT_AVAIL="$NOT_AVAIL $TOOL"; fi
- done
- if [[ "$NOT_AVAIL" != "" ]]; then
- echo "ERROR: The following required tool(s) cannot be found: $NOT_AVAIL"
- exit 3
- fi
- }
- # Check If Package Downloaded
- require_tools
- if [[ $* == $1 ]] ;
- then
- (echo -e "\nThis Script was especially made for Videos on mostly all online URL webties. \nv1ral_ITS \nImPerialTeKSolutions@outlook.com \nhttps://www.pastebin.com/u/v1ral_ITS \n" | yad --title "ITS Video Downloads Program" --width 350 --height 300 --text-info --button="Press ME To Continue!gtk-ok")
- fi
- # Download Of Files Location
- cd "$(yad --title "Change Directory To Download Destination" --file-selection --directory)"
- # Start Program
- time (sudo youtube-dl --ignore-config --hls-prefer-native --add-metadata -i -c --yes-playlist --external-downloader axel "$(kdialog --title "Copy/Paste Any Video URL" --inputbox "URL")") && mpv "https://notificationsounds.com/wake-up-tones/rise-and-shine-342/download/mp3"
Add Comment
Please, Sign In to add comment