ytcli

Des commandes pour utiliser youtube - retour accueil

git clone git://bebou.netlib.re/ytcli
Log | Files | Refs | README |

commit 0997ecfe8817f4ef02ed9e2062853246127181f4
parent 7874a45aecd14a8eb98e9d1a38f2b10d4331f18a
Auterice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Sun,  8 Sep 2024 13:39:20 +0200

Ajout script pour récupérer des streams twitch

Ne fonctionne pas si un stream a ">" dans son nom...

Diffstat:
Atwitchgetstreams | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/twitchgetstreams b/twitchgetstreams @@ -0,0 +1,8 @@ +#! /bin/sh + +category="$1" +chromium --headless=new --timeout=3000 --dump-dom https://www.twitch.tv/directory/category/${category:?need a category}/?sort=VIEWER_COUNT | + grep -Eo '(data-test-selector="TitleAndChannel"[^>]+>|[0-9.K]+ viewers)' | + cut -d'"' -f6,10 | tr '"' '\n' | + paste - - - | + cut -d' ' -f3-