shell-scripte-code/youtube-dl.sh
Your Name 715d1e9aae fix
2017-06-06 21:17:36 +02:00

23 lines
432 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
youtube-dl -i $format $url