46 lines
912 B
Bash
Executable file
46 lines
912 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/m4a/video/hd/fullhd/4k] : " format
|
|
|
|
if [ "$format" == "opus" ]
|
|
then
|
|
format="-f 251"
|
|
elif [ "$format" == "m4a" ]
|
|
then
|
|
format="-f 140"
|
|
elif [ "$format" == "video" ]
|
|
then
|
|
format="-f 43"
|
|
elif [ "$format" == "hd" ]
|
|
then
|
|
format="-f 247+251"
|
|
elif [ "$format" == "fullhd" ]
|
|
then
|
|
format="-f 303+251"
|
|
elif [ "$format" == "4k" ]
|
|
then
|
|
format="-f 315+251"
|
|
fi
|
|
|
|
if [ "$suche" == "suche" ]
|
|
then
|
|
youtube-dl "ytsearch:$wort" -q --force-ipv4 $format -o- | mplayer $voll -cache 8192 -
|
|
else
|
|
youtube-dl -q --force-ipv4 $format -o- $url | mplayer $voll -cache 8192 -
|
|
fi
|