New youtube playlist downloader

SeeMinusMinus@lemmy.world to Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com – 113 points –
youload
gitea.com

I wanted a simple app for downloading youtube playlists but I couldn't find one so I made one. There is still lots I want to do with it but for now it does everything I need.

16

You are viewing a single comment

Using Termux you can get yt-dlp installed and running on Android

Installing yt-dlp is a little more finicky than just installing the pip module within Termux, but I was able to use this to get it set up:

https://github.com/rofrol/termux-yt-dlp

I actually used pipx to get yt-dlp into Termux.

  1. Installed python and python-pip via pkg install python python-pip
  2. Installed pipx via pip install pipx
  3. Finally installed yt-dlp via pipx install yt-dlp

At least that's how it worked for me