dirkf
dirkf
Generally, please open a new issue rather than necroposting in a closed issue. But as you suggest, this may be an easy fix. Show URLs from the old domain redirect...
1. Please use the [template](https://github.com/ytdl-org/youtube-dl/issues/new?assignees=&labels=&template=1_broken_site.md). 2. Among other things you will be prompted to [read](https://github.com/ytdl-org/youtube-dl#user-content-bugs): >Some of our users seem to think there is a limit of issues they can...
The extractor doesn't know about playlists like the problem URL.
The playlist API URL for these has `custom/{id}/videos` where existing playlists with `pl_id=`, `pl_type=` have `{pl_type}/{id}`.
And now: ```console $ python -m youtube_dl --flat-playlist 'https://rutube.ru/plst/25168/' [download] Downloading playlist: 25168 [rutube:playlist] 25168/videos: Downloading page 1 [rutube:playlist] 25168/videos: Downloading page 2 [rutube:playlist] 25168/videos: Downloading page 3 [rutube:playlist] 25168/videos:...
Same: https://github.com/yt-dlp/yt-dlp/issues/1741
These site pages have a new page structure. On the plus side, the mp3 URL is now in the page and the player page doesn't need to be loaded, which...
Upstream gets the same result: ``` $ youtube-dl 'https://www.youtube.com/watch?v=OqjTtnmGv8s' --get-filename -o '%(upload_date)s' 20211025 $ ``` That value is the `'uploadDate'` in the page's `ytInitialPlayerResponse`. The page displayed by Chromium (Qt...
Also, apparently the `no-youtube-prefer-utc-upload-date` option isn't effective because extraction from `microformats, (..., 'uploadDate', any)` has already succeeded, discarding the timestamp resolution. In fact, `unified_strdate()` as-is is already enforcing `no-youtube-prefer-utc-upload-date`!
Since historically (I'm guessing this did not change until after the generic/offset values for the `timeZoneName` option to `Intl.DateFormat()` were widely supported, ca mid-2022), YT only sent day-resolution values, the...