Toastie 2 days ago
parent
commit
ce4c76a6ae
1 changed files with 17 additions and 0 deletions
  1. 17 0
      apps/yt-dlp.md

+ 17 - 0
apps/yt-dlp.md

@@ -0,0 +1,17 @@
+### Install yt-dlp
+```
+curl -L https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o yt-dlp && chmod a+rx yt-dlp 
+
+```
+
+### Install dependencies
+```
+sudo apt-get install curl ffmpeg jq 
+```
+
+
+
+### Install deno
+```
+curl -fsSL "https://dl.deno.land/release/$(curl -fsSL https://dl.deno.land/release-latest.txt)/deno-x86_64-unknown-linux-gnu.zip" -o /tmp/deno.zip && unzip -o -j -d . /tmp/deno.zip && chmod +x ./deno && rm -f /tmp/deno.zip
+```