>>108370651>>108370688Here's a guide. I use Firefox, you can do something similar in other browsers, but some things may be named something else.
1) Open your Network monitor/inspector tab in the browser
2) Click the right arrow in musicdex to load page 2. This sends a request to musicdex to get the next page of data (10 songs). The endpoint you are looking for is /api/v2/songs/latest. Filter your Network tab by that url
3) In Firefox, you can "Edit and Resend" requests, this lets you reuse your cookies for API credentials. Change the body to use a page limit of 100 to stay respectful. For example:
>{"channel_id":"UC-hM6YJuNYVAmUWxeIr9FeA","paginated":true,"limit":100,"offset":0}4) Edit and Resend but change the offset to be 0, 100, 200, ..., 700 one at a time to get batches of 100 songs each.
5) The response you get back is a JSON object. The fields you care about are `video_id` and `start`. Use a JSON editor or a scripting language like Python to parse out those two fields and convert the JSON into URLs like:
>https://www.youtube.com/watch?v=`video_id`&t=`start`sStep 5 is slightly "draw the rest of the fucking Moom" but I'm sleepy. If you don't hate GenAI, I'm certain any reputable model can write it for you in 5 minutes flat if you feed it this information.