aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* [mildom] Warn user of proxypukkandan2021-04-211-0/+3
|
* [MetadataFromField] Improve regex and add testspukkandan2021-04-212-4/+14
|
* [youtube] Bugfix in `_extract_ytcfg`pukkandan2021-04-211-0/+2
|
* Improve --sub-langs (see desc)pukkandan2021-04-204-16/+59
| | | | | | | | * Treat `--sub-langs` entries as regex * `all` can be used to refer to all the subtitles * the language code can be prefixed with `-` to exclude it * Deprecates `--all-subs` Closes #253
* [mildom:user:vod] Download only necessary amount of pagespukkandan2021-04-191-14/+14
|
* [mildom:vod] Remove proxypukkandan2021-04-191-5/+6
| | | | * Proxy is needed only for live videos
* [mildom] Change proxypukkandan2021-04-191-5/+17
| | | | | Related: #251 Closes #252
* [twitcasting] Fix extractorpukkandan2021-04-181-6/+9
| | | | | | | | * `Origin: https://twitcasting.tv` must be sent when requesting the webpage. Otherwise the extracted `m3u8` will always give a `502` * Fix regex for when `data-movie-playlist` is a dict containing the needed list * media initialization is fully supported; so change downloader to native Closes #220
* [rai] Add support for http formats (#208)nixxo2021-04-171-19/+108
| | | Authored by: nixxo
* Improve the yt-dlp.sh script (#248)Felix S2021-04-171-2/+2
| | | | | | | | | | * Quote the `$0` variable to correctly handle spaces * Change the shebang line to `/bin/sh` to avoid unnecessarily depending on bash * Use the `exec` command to avoid having the shell process linger unnecessarily * Change the mode to make the script directly executable Authored by: fstirlitz :ci skip all
* Update to ytdl-commit-9f6c03pukkandan2021-04-175-41/+163
| | | | | [cbsnews] Fix extraction for python <3.6 https://github.com/ytdl-org/youtube-dl/commit/9f6c03a00602eb1119e43a522cf50682f6d6a6dd
* [youtube:tab] Reload with unavailable videos for all playlistspukkandan2021-04-171-17/+30
| | | | | If the unavailable video is in a later page, the warning and button are not shown in the initial webpage So we force all playlists' initial page to reload with the correct params
* Add option `--ignore-no-formats-error`pukkandan2021-04-1739-76/+103
| | | | | * Ignores the "no video format" and similar errors * Experimental - Some extractors may still throw these errors
* Fix inconsistent use of `report_warning`pukkandan2021-04-1714-31/+31
|
* [downloader] Fix ffmpeg selection for m3u8_nativepukkandan2021-04-171-1/+1
|
* [youtube:tab] Show unavailable videos in playlists (#242)coletdjnz2021-04-171-5/+71
| | | | | Closes #231 Authored by: colethedj
* Fix some linter and typospukkandan2021-04-164-7/+7
|
* [viu:ott] Fix extractor (see desc)lkho2021-04-161-10/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | * add language_flag_id query param * add support for premium account (untested since I dont have a premium account) * support entire series Code from: https://github.com/blackjack4494/youtube-dlc/pull/211 https://github.com/ytdl-org/youtube-dl/pull/15182 https://github.com/ytdl-org/youtube-dl/pull/26775 Fixes: https://github.com/yt-dlp/yt-dlp/issues/219 https://github.com/ytdl-org/youtube-dl/issues/27946 https://github.com/ytdl-org/youtube-dl/issues/27863 https://github.com/ytdl-org/youtube-dl/issues/27812 https://github.com/ytdl-org/youtube-dl/issues/27464 https://github.com/ytdl-org/youtube-dl/issues/26788 https://github.com/blackjack4494/yt-dlc/issues/136 Possibly also fixes (untested): https://github.com/ytdl-org/youtube-dl/issues/16992 https://github.com/ytdl-org/youtube-dl/issues/26701 Co-authored by: lkho, pukkandan
* [Exec] Ensure backward compatibility when the command contains `%`pukkandan2021-04-161-10/+14
|
* [youtube] Standardize API calls for tabs, mixes and search (#245)coletdjnz2021-04-151-52/+78
| | | Authored by: colethedj
* [youtube] Ignore invalid stretch ratiopukkandan2021-04-141-2/+4
| | | | Closes #244
* [downloader] Fix downloader selection for m3u8pukkandan2021-04-141-1/+1
| | | | Bug introduced by: 52a8a1e1b93dbc88f0018d4842f1e90ba96e095f and a31953b0e69f710f737643cb36b0ca1caf69e04c
* [TubiTv] Add TubiTvShowIE (#243)Ashish2021-04-142-2/+36
| | | Authored by: Ashish0804
* [youtube] Improve channel syncid extraction to support ytcfg (#241)coletdjnz2021-04-141-4/+9
| | | Authored by: colethedj
* Ensure `mergeall` selects best format when multistreams are disabledpukkandan2021-04-131-2/+2
|
* [downloader] Fix external downloader selection for m3u8pukkandan2021-04-121-1/+1
| | | | Closes #239
* [version] updatepukkandan2021-04-127-14/+14
| | | | :ci skip all
* Release 2021.04.11pukkandan2021-04-124-5/+42
|
* [documentation] Improvementspukkandan2021-04-125-49/+57
|
* Add option `--convert-thumbnails`pukkandan2021-04-126-60/+124
| | | | Closes: https://github.com/yt-dlp/yt-dlp/issues/99 https://github.com/yt-dlp/yt-dlp/issues/102
* Allow running some `postprocessors` before actual downloadpukkandan2021-04-124-60/+54
|
* [youtube] Parse API parameters from initial webpage (#230)coletdjnz2021-04-121-50/+80
| | | | | | | | * Obtain innertube_context, api_key and x-goog-visitor-id from webpage * Generalize the header & Innertube_context extraction across YouTube extractors Related: https://github.com/ytdl-org/youtube-dl/commit/1b0a13f33cfb3644cc718d35951ea85bb1905459 Authored by: colethedj
* [youtube] Fix thumbnail URLpukkandan2021-04-111-0/+5
| | | | Closes: https://github.com/yt-dlp/yt-dlp/issues/233 https://github.com/ytdl-org/youtube-dl/issues/28023
* Pass any field to `--exec` using similar syntax to output templatepukkandan2021-04-113-11/+21
| | | | Related: https://github.com/ytdl-org/youtube-dl/issues/28642
* Fix `mergeall` when requested formats are unavailablepukkandan2021-04-101-1/+3
|
* Update to ytdl-commit-4fb25ffpukkandan2021-04-1012-126/+440
| | | | | | | | | [maoritv] Add new extractor https://github.com/ytdl-org/youtube-dl/commit/4fb25ff5a3be5206bb72e5c4046715b1529fb2c7 Except: [vimeo] improve extraction https://github.com/ytdl-org/youtube-dl/commit/3ae9c0f410b1d4f63e8bada67dd62a8d2852be32 [youtube:tab] Pass innertube context... https://github.com/ytdl-org/youtube-dl/commit/1b0a13f33cfb3644cc718d35951ea85bb1905459
* [downloaders] Fix API accesspukkandan2021-04-101-1/+1
| | | | Bug introduced by: 52a8a1e1b93dbc88f0018d4842f1e90ba96e095f
* Deprecate more optionspukkandan2021-04-102-7/+6
| | | | | * `--all-formats` = `-f all` * `--include-ads` is not implemented
* Fix default of `dynamic_mpd`pukkandan2021-04-101-1/+1
|
* Option to choose different downloader for different protocolspukkandan2021-04-107-33/+95
| | | | | | | | | * Renamed `--external-downloader-args` to `--downloader-args` * Added `native` as an option for the downloader * Use similar syntax to `--downloader-args` etc. Eg: `--downloader dash:native --downloader aria2c` * Deprecated `--hls-prefer-native` and `--hls-prefer-ffmpeg` since the same can now be done with `--downloader "m3u8:native"` and `m3u8:ffmpeg` respectively * Split `frag_urls` protocol into `m3u8_frag_urls` and `dash_frag_urls` * Standardize shortening of protocol names with `downloader.shorten_protocol_name`
* Improve argument parsing for `-P`, `-o`, `-S`pukkandan2021-04-102-12/+24
| | | | | * `-P "subtitle,thumbnail:PATH"` is now possible. Similarly for `-o` * `-S "fps,br" -S "res,codec"` is now interpreted as `-S res,codec,fps,br`. Previously, `-S fps,br` was ignored in this case.
* Format selector `mergeall` to download and merge all formatspukkandan2021-04-102-65/+81
|
* [youtube] Fix _extract_alertspukkandan2021-04-101-11/+12
| | | | | * Sometimes one warning is split between multiple runs * Also simplified code
* [nebula] Add extractor (watchnebula.com) (#122)Henrik Heimbuerger2021-04-092-1/+199
| | | | Authored by: hheimbuerger
* [NFHSNetwork] Add extractor (#217)LE2021-04-092-0/+145
| | | Authored by: llacb47
* [nitter] Fix extraction of reply tweets (#218)bopol2021-04-081-44/+105
| | | | | | | And update instance list Closes #215 Authored by: B0pol
* [bilibili] Fix uploaderpukkandan2021-04-081-2/+4
| | | | Related: https://github.com/yt-dlp/yt-dlp/issues/222
* [youtube] Extract comments' approximate timestamp (#221)coletdjnz2021-04-071-15/+26
| | | Authored by: colethedj
* [utils] Add `datetime_from_str` to parse relative time (#221)colethedj2021-04-072-20/+81
| | | | | | and `datetime_add_months` to accurately add/subtract months Authored by: colethedj
* [nitter] Fix thumbnails (#216)bopol2021-04-051-4/+4
| | | Authored by: B0pol