From f4d3de8b858b6ce74c1b7806d5cc1de58c11ff5c Mon Sep 17 00:00:00 2001 From: simono41 Date: Wed, 30 May 2018 20:30:37 +0200 Subject: [PATCH] fix --- youtube-dl.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/youtube-dl.sh b/youtube-dl.sh index 79a056f..252f59a 100755 --- a/youtube-dl.sh +++ b/youtube-dl.sh @@ -10,13 +10,7 @@ exit 0 fi url="$1" -pfad="$2" -[[ -z "${pfad}" ]] && pfad="." -format="$3" - -#read -p "Wie ist die URL? : " url -#read -p "Wo sollen die Dateien heruntergeladen werden? : " pfad -#read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/m4a/video/hd/fullhd/4k] : " format +format="$2" if [ "$format" == "opus" ] then @@ -38,8 +32,4 @@ then format="-f 315+251" fi - -mkdir -p $pfad - -cd $pfad youtube-dl -i -c --socket-timeout 10000 --force-ipv4 --restrict-filenames $format $url