Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-25 | [UtreonIE] Add extractor (#562) | Ashish | |
Authored by: Ashish0804 | |||
2021-07-24 | [mediaset] Fix extraction (#564) | nixxo | |
Closes #365 Authored by: nixxo | |||
2021-07-24 | [version] update | pukkandan | |
:ci skip all | |||
2021-07-24 | Release 2021.07.242021.07.24 | pukkandan | |
2021-07-24 | [youtube:tab] Extract video duration early | pukkandan | |
Based on: https://github.com/ytdl-org/youtube-dl/pull/29487 by glenn-slayden | |||
2021-07-24 | [youtube] Simplify `_get_text` early | pukkandan | |
2021-07-23 | [test] Add Python 3.10 (#480) | xtkoba | |
Authored-by: pukkandan, xtkoba | |||
2021-07-23 | [test] Use `pytest` instead of `nosetests` (#482) | pukkandan | |
`nosetests` is no longer being maintained : https://github.com/nose-devs/nose/issues/1099 and will stop working in py 3.10 as can be seen in #480 | |||
2021-07-23 | [cookies] Handle errors when importing `keyring` | pukkandan | |
Workaround for #551 | |||
2021-07-23 | [cookies] Handle `sqlite` `ImportError` gracefully (#554) | Matt Broadway | |
Closes #544 Authored by: mbway | |||
2021-07-23 | [downloader] Pass same status object to all `progress_hooks` | pukkandan | |
2021-07-23 | [youtube] Fix subtitles only being extracted from the first client | pukkandan | |
Closes #547 | |||
2021-07-23 | Try all clients even if age-gated | pukkandan | |
Reverts: https://github.com/yt-dlp/yt-dlp/pull/536/commits/892e31ce7c5f66418fee26a24eda30e5fe79d901 If some API calls have any issue, saving the state will cause unnecessary errors | |||
2021-07-23 | [youtube] Disable `get_video_info` age-gate workaround | pukkandan | |
This now seems to be completely dead Closes: #553 | |||
2021-07-22 | [youtube] Fix age-gated videos for API clients when cookies are supplied (#545) | coletdjnz | |
Fixes #543 Authored by: colethedj | |||
2021-07-22 | [downloader] Pass `info_dict` to `progress_hook`s | pukkandan | |
2021-07-22 | [cookies] bugfix | pukkandan | |
Fixes: https://github.com/yt-dlp/yt-dlp/pull/488#discussion_r674352059 | |||
2021-07-22 | [version] update | pukkandan | |
:ci skip all | |||
2021-07-22 | Release 2021.07.212021.07.21 | pukkandan | |
and fix some typos Closes #538 | |||
2021-07-22 | [youtube] Make `--extractor-retries` work for more errors | pukkandan | |
Closes #507 | |||
2021-07-22 | Fix bug where `original_url` was not propagated when `_type`=`url` | pukkandan | |
2021-07-21 | [youtube] Add debug message for SAPISID cookie extraction (#540) | coletdjnz | |
Authored by: colethedj | |||
2021-07-22 | Add option `--cookies-from-browser` to load cookies from a browser (#488) | Matt Broadway | |
* also adds `--no-cookies-from-browser` Original PR: https://github.com/ytdl-org/youtube-dl/pull/29201 Authored by: mbway | |||
2021-07-21 | [youtube] Improve extraction of livestream metadata | pukkandan | |
Modified from and closes #441 Authored by: pukkandan, krichbanana | |||
2021-07-21 | Add field `live_status` | pukkandan | |
2021-07-21 | bugfix for 50fed816dd5ae970d69d8997eb854d475ed91ede | pukkandan | |
2021-07-21 | [douyin] Add extractor (#513) | Philip Xu | |
Authored-by: pukkandan, pyx | |||
2021-07-21 | [nebula] Authentication via tokens from cookie jar (#537) | Henrik Heimbuerger | |
Closes #496 Co-authored-by: hheimbuerger, TpmKranz | |||
2021-07-21 | Add `only_once` param for `write_debug` | pukkandan | |
2021-07-21 | [utils] Improve `traverse_obj` | pukkandan | |
2021-07-21 | [youtube] Extract data from multiple clients (#536) | pukkandan | |
* `player_client` accepts multiple clients * default `player_client` = `android,web` * music clients can be specifically requested * Add IOS `player_client` * Hide live dash since they can't be downloaded Closes #501 Authored-by: pukkandan, colethedj | |||
2021-07-21 | Add `only_once` param for `report_warning` | pukkandan | |
Related: https://github.com/yt-dlp/yt-dlp/pull/488#discussion_r667527297 | |||
2021-07-21 | Errors in playlist extraction should obey `--ignore-errors` | pukkandan | |
Related: https://github.com/yt-dlp/yt-dlp/issues/535#issuecomment-883277272, https://github.com/yt-dlp/yt-dlp/issues/518#issuecomment-881794754 | |||
2021-07-20 | [youtube] Fix controversial videos when requested via API (#533) | coletdjnz | |
Closes: https://github.com/yt-dlp/yt-dlp/issues/511#issuecomment-883024350 Authored by: colethedj | |||
2021-07-20 | [youtube:tab] Fix channels tab | pukkandan | |
2021-07-20 | [utils] Fix LazyList for Falsey values | pukkandan | |
2021-07-20 | [youtube] Make `parse_time_text` and `_extract_chapters` non-fatal | pukkandan | |
Related: #532, 7c365c210939bcf3497f212a163ca1987f189421 | |||
2021-07-20 | [youtube] Sanity check `chapters` (and refactor related code) | pukkandan | |
Closes #520 | |||
2021-07-20 | Rename `NOTE` in `-F` to `MORE INFO` | pukkandan | |
since it's often confused to be the same as `format_note` | |||
2021-07-20 | [youtube] Extract even more thumbnails and reduce testing | pukkandan | |
* Also fix bug where `_test_url` was being ignored Ref: https://stackoverflow.com/a/20542029 Related: #340 | |||
2021-07-20 | [compat] Remove unnecessary code | pukkandan | |
2021-07-20 | [utils] Improve `traverse_obj` | pukkandan | |
* Allow skipping a level: `traverse_obj([{k:v1}, {k:v2}], (None, k))` => `[v1, v2]` * Make keys variadic: `traverse_obj(obj, k1: str, k2: str)` => `traverse_obj(obj, (k1,), (k2,))` * Fetch from multiple keys: `traverse_obj([{k1:[1], k2:[2], k3:[3]}], (0, (k1, k2), 0))` => `[1, 2]` TODO: Add tests | |||
2021-07-20 | [youtube] Extract more thumbnails | pukkandan | |
* The thumbnail URLs are hard-coded and their actual existence is tested lazily * Added option `--no-check-formats` to not test them Closes #340, Related: #402, #337, https://github.com/ytdl-org/youtube-dl/issues/29049 | |||
2021-07-20 | [crunchyroll:playlist] Force http | pukkandan | |
Closes #495 | |||
2021-07-19 | [docs] fix default of multistreams | pukkandan | |
2021-07-19 | Add option `--exec-before-download` | pukkandan | |
Closes #530 | |||
2021-07-19 | [pornflip] Add new extractor (#523) | mzbaulhaque | |
Authored-by: mzbaulhaque | |||
2021-07-19 | [youtube] misc cleanup and bug fixes (#505) | coletdjnz | |
* Update some `_extract_response` calls to keep them consistent * Cleanup continuation extraction related code using new API format * Improve `_extract_account_syncid` to support multiple parameters * Generalize `get_text` and related functions into one * Update `INNERTUBE_CONTEXT_CLIENT_NAME` with integer values Authored by: colethedj | |||
2021-07-18 | [youtube] Fix session index extraction and headers for non-web player ↵ | coletdjnz | |
clients (#526) Fixes #522 | |||
2021-07-17 | [youtube] Fix authentication when using multiple accounts | coletdjnz | |
`SESSION_INDEX` in `ytcfg` is the index of the active account and should be sent as `X-Goog-AuthUser` header Closes #518 Authored by @colethedj |