This commit is contained in:
2024-02-28 11:04:05 +01:00
commit db2082311f
49 changed files with 587 additions and 0 deletions

20
ytdl2 Executable file
View File

@@ -0,0 +1,20 @@
#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