dirkf

Results 1687 comments of dirkf

> We do not need the 'sound' matcher in the BBCCoUkIE. ... Quite right. The Sounds pages have the `__PRELOADED_STATE__` hydration JSON and `BBCIE` works fine in the UK. You...

The site GETs https://dev.epicgames.com/community/api/learning/post.json?hash_id=4ORW (`4ORW` being the ID in the page URL), which returns JSON including this at `.blocks[0]`: ```py { 'type': 'video', 'video_id': 'V_0hmdLF', 'provider': 'kaltura', 'caption': '', 'autoplay':...

The [second problem URL](https://github.com/yt-dlp/yt-dlp/issues/9784#issuecomment-2085346570) is giving 404 now, with `{exception404: {value: true}}` as the `_SSR_HYDRATED_DATA`. With the original problem URL and that from #9915, I find this: * a valid...

How does the merge time compare with the time taken to write a 20GB file on the same storage medium, say with `dd if=/dev/random bs=1M count=20K of=20GB_test.dat`?

When the formats are combined into an MP4 container, the audio and video streams are multiplexed, like doing up a zipper. This means that during playback (when it's important that...

User work-around: change `m.` to `www.`. Final solution: ```diff class TNAFlixIE(TNAEMPFlixBaseIE): - _VALID_URL = r'https?://(?:www\.)?(?Ptnaflix)\.com/[^/]+/(?P[^/]+)/video(?P\d+)' + _VALID_URL = r'https?://(?:(?:www|m)\.)?(?Ptnaflix)\.com/[^/]+/(?P[^/]+)/video(?P\d+)' ```

Problem video gone.

Thanks for your proposal. I don't think we should add a feature just to help your programming project. Instead, ask whether you are loading the JSON into your Java program...

Duplicate of #31585

Fair point, which I did actually realise after closing this. In my own project I'd probably increment the version immediately after a release with some sort of "work-in-progress" indicator and...