Quellcode durchsuchen

added info how to deal with yt channels

Toastie vor 2 Tagen
Ursprung
Commit
ad0a0f405e
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen
  1. 5 0
      apps/yt-dlp.md

+ 5 - 0
apps/yt-dlp.md

@@ -20,4 +20,9 @@ curl -fsSL "https://dl.deno.land/release/$(curl -fsSL https://dl.deno.land/relea
 ### Use
 ### Use
 ```
 ```
 ./yt-dlp --js-runtimes deno:./deno 
 ./yt-dlp --js-runtimes deno:./deno 
+```
+
+## Get from youtube channel page all playlists using firefox console
+```
+Array.from(document.querySelectorAll(  "ytd-grid-playlist-renderer.style-scope > div:nth-child(2) > h3:nth-child(1) > a:nth-child(1)")).map(el => el.href).join("\n");copy(out);
 ```
 ```