scripts/ytdl2

14 lines
382 B
Plaintext
Raw Normal View History

2024-02-28 10:04:05 +00:00
#dependencies
#kdialog youtube-dl
folder=$(date +"%m_%Y")
cd ~/Music/
mkdir $folder
cd $folder
url=$(kdialog --title "Input dialog" --inputbox "Paste youtube link")
echo "eingegebener link: " $url
youtube-dl -i --extract-audio --audio-format vorbis -o "%(title)s.%(ext)s" $url
kdialog --title "the link "$url" has finished" --passivepopup \
"Download and conversion finnished" 10