shell-scripte-code/youtube-dl.sh
Simon Rieger bf3deb0aac fix
2017-07-04 00:04:54 +02:00

23 lines
439 B
Bash
Executable file

#!/bin/bash
set -ex
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/audio/video/BEST] : " format
if [ "$format" == "opus" ]
then
format="-f 251"
elif [ "$format" == "audio" ]
then
format="-f 140"
elif [ "$format" == "video" ]
then
format="-f 43"
fi
mkdir -p $pfad
cd $pfad
python youtube-dl -i $format $url