shell-scripte-code/youtube-dl.sh
2017-05-29 22:20:42 +02:00

15 lines
306 B
Bash
Executable file

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