dirkf

Results 631 comments of dirkf

The point is to replace the `re.finditer()` call with `entries(...)`. As `entries()` is a generator it's iterable and can be passed as the first param of the `IE.playlist_from_matches()` method. Anyhow,...

Until one of your commits has been merged I have to enable the CI tests manually each time: done.

From [@PDupont815](https://github.com/ytdl-org/youtube-dl/issues/31178#issue-1341687268): --- ``` D:\youtube\Test>youtube-dl --verbose --no-check-certificate https://www.rtbf.be/auvio/detail_sting-l-electron-libre?id=2929134 [debug] System config: [] [debug] User config: [] [debug] Custom config: [] [debug] Command-line args: ['--verbose', '--no-check-certificate', 'https://www.rtbf.be/auvio/detail_sting-l-electron-libre?id=2929134'] [debug] Encodings: locale cp1252,...

Please try [yt-dlp](https://github.com/yt-dlp/yt-dlp/releases) with your account details. The yt-dlp extractor was updated in https://github.com/yt-dlp/yt-dlp/pull/4479 and has further proposed changes in https://github.com/yt-dlp/yt-dlp/pull/4671. If yt-dlp works, we can back-port the new `redbee.py`.

What would be the difference between playing a video in the browser and downloading it as far as the site's servers are concerned? This observation is consistent with this hypothesis:...

... ideally, a URL that doesn't need a login? The `VrtNu` extractor (in module `extractor/canvas.py`) passes the `asset_id` and `video_id` in an API URL for the defunct mediazone.vrt.be service. The...

Two problems there, at least: * the extractor should check that a plausible media URL is returned and crash if not * the core processing checks for no formats before...

Also, if a page fails with yt-dl, it would be useful to know whether it works with yt-dlp, as that has a newer version of the extractor (but using some...

So, on a dump T7700 laptop: 2.7: 146s (`from Queue import Queue`) 3.5: 110s 3.9: 70s Might the difference between yt-dlp and yt-dl be related to the Python version? Also,...

The point of the linked article was the the opportunities for multi-threading speed-up in current Python emvironmments are limited. Although that doesn't directly address why two versions of `extractor/youtube.py` might...