Yavos

Results 29 comments of Yavos

The issue (at least the 404 one) still exists with other URLs. One example would be the currently running My Hero Academia Series (https://www.prosiebenmaxx.de/anime/my-hero-academia) Here's an example. ``` R:\>youtube-dl` -v...

Apparently something changed in the underlying system. In my test I used `https://www.prosiebenmaxx.de/anime/my-hero-academia/video/414-eine-strahlende-zukunft-ganze-folge` My browser currently calls `https://vas-v4.p7s1video.net/4.0/getsources?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6InhfcHJvc2llYmVubWF4eC1kZSJ9.eyJjb250ZW50X2lkcyI6eyJ2X2toZml5YzlqYmFmZyI6eyJzdWJjbGlwX3N0YXJ0IjowLCJzdWJjbGlwX2VuZCI6MTM3MX19LCJzZWN1cmVfZGVsaXZlcnkiOnRydWUsImlhdCI6MTY1MDgyNjExMSwibmJmIjoxNjUwODI1ODExLCJleHAiOjE2NTA4MjY0MTF9.Zj817nYUWonbYcmQS0BoYErkHYWzdmf-qbm9SvekFAA` to get all necessary data. (I don't see any interesting headers there.)...

The URLs seem to expire pretty fast. Seems like something between 5 and 10 minutes. It worked in my try as well, though. The payload encrypted in the token looks...

In multipart files (movies) it looks similar ``` payload = { "content_ids": { "v_c5zwq9l5bzui": [ { "subclip_start": 0, "subclip_end": 1431.75, "id": 0 }, { "subclip_start": 1421.75, "subclip_end": 2863.5, "id": 1...

I've looked through the changes to yt-dlp mentioned a few posts earlier. Seems like I got everything necessary figured out. The encryption key is already stored correctly in `_ENCRYPTION_KEY`, so...

I did some testing and copy pasting of what was done in commit https://github.com/yt-dlp/yt-dlp/pull/1012/commits/c008b59df863d0ec50cdd402e39d584254d7352d and downloading anime seems to work again. Since my code is still full of print() functions...

I kind of got playlists working now. But I still run into 2 problems which I could need some help with: - If one video in that playlist is drm...

Weird. I thought I had that movie problem solved if you don't download from playlists. But apparently the `'_type': 'multi_video'` doesn't work at all. I'll look into this. Maybe I...

Yeah, I know that movies are saved as playlists. But that's exactly what the multi_video type is supposed to be for. It should automatically concatenate them into a single file...

I just looked into the code for downloading `multi_video` entries. It's exactly the same as for playlists so the supposed automated concatenation won't happen. Now I'll take a look into...