I want to be able to download my maven.com course videos for offline viewing. They are behind login and streamed with mux.com which has a token in the url.
To download them you need to:
- Get the Get cookies.txt LOCALLY Chrome ext
- Login to Maven.com and visit the specific video page
- Click the cookies ext icon and download a cookies.txt
- Open Web Inspector to Network tab, refresh and filter by 'm3u8'. Copy the URL of the first request.
- Install https://github.com/yt-dlp/yt-dlp
- Run this cmd:
yt-dlp -o "ANY_VIDEO_NAME.%(ext)s" --cookies cookies.txt "VIDEO_URL_WITH_LONG_TOKEN_INCLUDED" --user-agent "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36" --referer "URL_OF_WEBSITE_PAGE_VIDEO_IS_FROM"