Des commandes pour utiliser youtube - retour accueil
git clone git://bebou.netlib.re/ytcli
Log | Files | Refs | README |
yt (257B)
1 #! /bin/sh 2 3 [ "$1" = "c" ] \ 4 && { format=$(yt-dlp -F "$2" |sed '1,8 d' | fzy -m | cut -d' ' -f1 | paste -s -d '+' -); video="$2"; } \ 5 || { format="18"; video="$1"; } 6 mpv --hwdec=auto --ytdl-format="$format" --cache-secs=45 --volume=50 "$video" 2>/dev/null 7