shell-scripte-code/youtube-dl.sh
2017-05-31 13:16:28 +02:00

21 lines
383 B
Bash
Executable file

#!/bin/bash
read -p "Wie ist die URL? : " url
read -p "Soll ein Video heruntergeladen werden oder Audio? [audio/video/opus] : " format
read -p "Wo sollen die Dateien heruntergeladen werden? : " pfad
if [ "$format" == "opus" ]
then
format=251
elif [ "$format" == "audio" ]
then
format=140
else
#video
format=43
fi
mkdir -p $pfad
cd $pfad
youtube-dl -i -f $format $url