From b59f968112bf4a8d8cafedea80081b6fbdf6e207 Mon Sep 17 00:00:00 2001 From: Simon Rieger Date: Sat, 15 May 2021 13:26:24 +0200 Subject: [PATCH] add youtube-dl-helper_v1.sh --- youtube-dl-helper_v1.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 youtube-dl-helper_v1.sh diff --git a/youtube-dl-helper_v1.sh b/youtube-dl-helper_v1.sh new file mode 100644 index 0000000..556ade6 --- /dev/null +++ b/youtube-dl-helper_v1.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +EINGABE=$(zenity --list --title "Youtube-DLH" --text "Was willst du haben?" \ +--column "Auswahl" --column "Typ" --radiolist TRUE "Video runterholen" FALSE "Nur Audio runterholen" \ +--width=600 --height=400) + + + + + +if [ "$EINGABE" == "Video runterholen" ] +then + +LINK=$(zenity --entry --title "Link einfügen" --text "Gib den Link zum Video ein du Penner" --width=600) + +youtube-dl $LINK | zenity --progress --title "Downloade" --text "Ich arbeite dran du Penner" --pulsate && exit 0 + +fi + + + + +if [ "$EINGABE" == "Nur Audio runterholen" ] +then + +LINK=$(zenity --entry --title "Link einfügen" --text "Gib den Link zum Video ein du Penner" --width=600) + +youtube-dl -x --audio-format mp3 $LINK | zenity --progress --title "Downloade" --text "Ich arbeite dran du Penner" --pulsate && exit 0 + +fi \ No newline at end of file