50 lines
1.1 KiB
Bash
Executable file
50 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
if [ "$1" == "--help" ]
|
|
then
|
|
echo "bash ./youtube-dl.sh URL FORMAT"
|
|
echo "Formate: [opus/m4a/video/hd/fullhd/4k]"
|
|
exit 0
|
|
fi
|
|
|
|
url="$1"
|
|
format="$2"
|
|
|
|
[[ -z "${url}" ]] && read -p "URL: " url
|
|
[[ -z "${format}" ]] && read -p "Format [opus/flac/m4a/video/hd/fullhd/4k]: " format
|
|
|
|
if [ "$format" == "opus" ]
|
|
then
|
|
format="--audio-format opus"
|
|
audio="-x"
|
|
quality="--audio-quality 0"
|
|
elif [ "$format" == "flac" ]
|
|
then
|
|
format="--audio-format flac"
|
|
audio="-x"
|
|
quality="--audio-quality 0"
|
|
elif [ "$format" == "m4a" ]
|
|
then
|
|
format="--audio-format m4a"
|
|
audio="-x"
|
|
elif [ "$format" == "mp4" ]
|
|
then
|
|
format="--audio-format mp4"
|
|
audio="-x"
|
|
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
|
|
|
|
yt-dlp -i -c --socket-timeout 10000 --force-ipv4 --restrict-filenames --embed-thumbnail --embed-metadata --match-filter "!was_live" $format $audio $quality $url
|