[C] Change from youtube-dl to yt-dlp

This commit is contained in:
Simon Rieger 2022-03-30 18:50:35 +02:00
parent 2215cb1eb4
commit bd91e25a76

View file

@ -4,68 +4,39 @@ set -ex
if [ "$1" == "--help" ] || [[ -z "$1" ]] if [ "$1" == "--help" ] || [[ -z "$1" ]]
then then
echo "bitte alles kleinschreiben" echo "bash ./youtube-dl.sh URL FORMAT"
echo "bash ./youtube-dl.sh suche/search URL/stichwort FORMAT" echo "Formate: [opus/m4a/video/hd/fullhd/4k]"
echo "Formate: [opus/m4a/video/hd/hdmp4/fullhd/fullhdmp4/4k/FORMAT]"
exit 0 exit 0
fi fi
if [ "$1" == "suche" ] || [ "$1" == "search" ]; then url="$1"
suche="$1" format="$2"
url="$2"
format="$3"
else
url="$1"
format="$2"
fi
if [ "$format" == "opus" ] if [ "$format" == "opus" ]
then then
format="-f 251" format="--audio-format opus"
audio="-x"
quality="--audio-quality 0"
elif [ "$format" == "m4a" ] elif [ "$format" == "m4a" ]
then then
format="-f 140" format="--audio-format m4a"
audio="-x"
elif [ "$format" == "mp4" ]
then
format="--audio-format mp4"
audio="-x"
elif [ "$format" == "video" ] elif [ "$format" == "video" ]
then then
format="-f 43" format="-f 43"
elif [ "$format" == "hd" ] elif [ "$format" == "hd" ]
then then
format="-f 247+251" format="-f 247+251"
elif [ "$format" == "hdmp4" ]
then
format="-f 22"
elif [ "$format" == "fullhd" ] elif [ "$format" == "fullhd" ]
then then
format="-f 303+251" format="-f 303+251"
elif [ "$format" == "fullhdmp4" ]
then
format="-f 299+140"
elif [ "$format" == "4k" ] elif [ "$format" == "4k" ]
then then
format="-f 315+251" format="-f 315+251"
elif [ -n "$format" ]; then
format="-f $format"
fi fi
video="" yt-dlp -i -c --socket-timeout 10000 --force-ipv4 --restrict-filenames $format $audio $quality $url
if [ "$suche" == "suche" ] || [ "$suche" == "search" ]
then
if ! youtube-dl "ytsearch:$url" -i -c --socket-timeout 10000 --force-ipv4 --restrict-filenames --no-playlist $format; then
echo "Download fehlgeschlagen"
exit 1
fi
video=$(youtube-dl "ytsearch:$url" -i -c --socket-timeout 10000 --force-ipv4 --restrict-filenames --no-playlist --get-filename $format)
else
if ! youtube-dl -i -c --socket-timeout 10000 --force-ipv4 --restrict-filenames --no-playlist $format $url; then
echo "Download fehlgeschlagen"
exit 1
fi
video=$(youtube-dl -i -c --socket-timeout 10000 --force-ipv4 --restrict-filenames --no-playlist --get-filename $format $url)
fi
if [ "${video}" != "" ]; then
vlc.exe ${video}
else
echo "Konnte Video nicht finden"
exit 1
fi