shell-scripte-code/youtube.sh
2017-07-24 01:30:14 +02:00

40 lines
769 B
Bash
Executable file

#!/bin/bash
set -ex
read -p "Haben sie eine url? : [URL/suche] " suche
if [ "$suche" == "suche" ]
then
read -p "Wie heißt das Stichwort? : " wort
else
read -p "Wie ist die URL? : " url
fi
read -p "Vollbild? : [Y/n] " vollbild
if [ "$vollbild" != "n" ]
then
voll="-fs"
fi
read -p "Soll ein Video heruntergeladen werden oder Audio? [opus/audio/video/BEST/4k] : " format
if [ "$format" == "opus" ]
then
format="-f 251"
elif [ "$format" == "audio" ]
then
format="-f 140"
elif [ "$format" == "video" ]
then
format="-f 43"
elif [ "$format" == "4k" ]
then
format="-f 303+251"
fi
if [ "$suche" == "suche" ]
then
youtube-dl "ytsearch:$wort" -q $format -o- | mplayer $voll -cache 8192 -
else
youtube-dl -q $format -o- $url | mplayer $voll -cache 8192 -
fi