Download from Youtube (useful yt-dlp commands)
to get the app: https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp OR pipx upgrade --pip-args=--pre yt-dlp to get a list of available formats for a video: ./yt-dlp -F RsYPyPP7E2w to get a specific format. Here we chose the audio-only 139: ./yt-dlp -f 139 OIdj5HnOnvU to get a text list of all videos on a channel: ./yt-dlp --flat-playlist --print "%(id)s %(duration_string)s %(title)s" https://www.youtube.com/@ACGreviews/videos > Playlist_ACGreviews.txt to get a list of a specific playlist on a channel: yt-dlp --flat-playlist --print "%(channel)s %(id)s %(duration_string)s %(title)s" https://www.youtube.com/playlist?list=PLX34qDh_nH51NT3_eHghr8YOS_hFuG51O > Playlist_Name to get the latest 20 videos on your account's subscription list: ./yt-dlp --cookies-from-browser firefox --flat-playlist -I :20 --print "%(id)s %(duration_string)s %(title)s" :ytsubs > MySubList.txt OR (using a specific path for the browser. Usually not needed) ./yt...