 coletdevandGitHub
|
379a4f161d
|
[utils] Fix inconsistent default handling between HTTP and HTTPS requests (#4158)
Default headers such as `Content-Type` were only being added for HTTPS requests among other handling.
Fixes bug in https://github.com/ytdl-org/youtube-dl/commit/be4a824d74add1a3b78b8244dff12f4f078f168a
Authored-by: coletdjnz
|
2022-06-24 03:29:28 +00:00 |
|
 coletdevandGitHub
|
f0bc6e2019
|
[extractor] Add default parameter to _search_json (#4057)
Authored by: pukkandan, coletdjnz
|
2022-06-18 17:55:18 -07:00 |
|
coletdjnz
|
4ce05f5759
|
[extractor/youtube] Fix live chat for videos with content warning
Fixes #4051
Authored by: coletdjnz
|
2022-06-12 17:56:50 +12:00 |
|
 coletdevandGitHub
|
2ae778b8fc
|
[extractor/youtube] Add innertube_host and innertube_key extractor args (#3916)
Allows user to override Innertube API host or key for all requests
Authored by: coletdjnz
|
2022-06-08 22:18:01 +00:00 |
|
coletdjnz
|
65141660ab
|
[extractor/youtube] Fix bug in b7c47b7438
Closes #3997
Authored by: coletdjnz
|
2022-06-07 12:26:36 +12:00 |
|
 coletdevandGitHub
|
c7a7baaa13
|
[extractor/youtube] Fix :ytnotifications extractor (#3775)
Still some issues, see https://github.com/yt-dlp/yt-dlp/pull/3775
Authored by: coletdjnz
|
2022-06-03 07:04:39 +00:00 |
|
coletdjnz
|
ee27297f82
|
[extractor/youtube] Fix initial player response extraction
Authored by: pukkandan, coletdjnz
|
2022-05-29 19:54:22 +12:00 |
|
 coletdevandGitHub
|
2c6dcb65fb
|
[utils] Send HTTP/1.1 ALPN extension (#3889)
Some servers may reject requests if not sent (e.g. fingerprinting)
Fixes #3878
Authored by: coletdjnz
|
2022-05-28 03:46:36 +00:00 |
|
coletdjnz
|
5faf6528fb
|
[http] Fix bug in retrying on read timeout in py < 3.10
socket.timeout is not an alias of TimeoutError in py < 3.10
Fixes bug in https://github.com/yt-dlp/yt-dlp/commit/a2e77303e3385da640a0904cd6cb76235fa9691b
Authored-by: coletdjnz
|
2022-05-17 09:17:37 +12:00 |
|
  
|
bb58c9ed5c
|
Add support for SSL client certificate authentication (#3435)
Adds `--client-certificate`, `--client-certificate-key`, `--client-certificate-password`
Authored-by: coletdjnz
Co-authored-by: df <fieldhouse@gmx.net>
Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
|
2022-05-02 07:59:45 +00:00 |
|
 coletdevandGitHub
|
afac4caa7d
|
Fix redirect HTTP method handling (#3577)
Authored by: coletdjnz
|
2022-05-01 20:40:26 -07:00 |
|
 coletdevandGitHub
|
6e634cbe42
|
[youtube] Add YoutubeStoriesIE (#3362)
Get channel stories with `ytstories:<channel UCID>`
Authored-by: coletdjnz
|
2022-05-01 06:46:28 +00:00 |
|
coletdjnz
|
affc4fefea
|
[youtube] Fix episode metadata extraction
|
2022-04-15 16:22:03 +12:00 |
|
 coletdevandGitHub
|
61d3665d9d
|
[youtube] Fix uploader for collaborative playlists (#3332)
Authored by: coletdjnz
|
2022-04-07 01:11:16 -07:00 |
|
 coletdevandGitHub
|
ad210f4fd4
|
[youtube:search] Support hashtag entries (#3265)
Authored-by: coletdjnz
|
2022-04-02 06:11:14 +00:00 |
|
coletdjnz
|
c8e856a551
|
[web.archive:youtube] Make CDX API requests non-fatal
Partial fix for https://github.com/yt-dlp/yt-dlp/issues/3278
Authored-by: coletdjnz
|
2022-04-02 19:07:13 +13:00 |
|
 coletdevandGitHub
|
1c1b2f96ae
|
[youtube:tab] Fix duration extraction for shorts (#3171)
Related: https://github.com/TeamNewPipe/NewPipe/issues/8034
Authored-by: coletdjnz
|
2022-03-28 00:49:42 +00:00 |
|
 coletdevandGitHub
|
fd2ad7cb24
|
[youtube:tab] Return shorts url if video is a short (#3168)
Allows filtering out shorts from feeds with `--match-filter`
Closes #3165
Authored-by: coletdjnz
|
2022-03-27 05:20:25 +00:00 |
|
 coletdevandGitHub
|
af14914baa
|
Remove Accept-Encoding header from std_headers (#3153)
This should be set by each downloader to what it supports.
Fixes https://github.com/yt-dlp/yt-dlp/issues/3142
Authored-by: coletdjnz
|
2022-03-23 07:47:02 +00:00 |
|
 coletdevandGitHub
|
d5820461e8
|
Use certificates from certifi if installed (#3115)
Fixes #3102 and most `CERTIFICATE_VERIFY_FAILED` issues
Authored by: coletdjnz
|
2022-03-22 16:26:55 -07:00 |
|
 coletdevandGitHub
|
8a23db9519
|
[wget] Fix proxy (#3152)
Upstream PR: https://github.com/ytdl-org/youtube-dl/pull/29343
Authored-by: kikuyan, coletdjnz
|
2022-03-22 14:24:27 -07:00 |
|
 coletdevandGitHub
|
e6552207da
|
[panopto] Improve subtitle extraction and support slides (#3009)
Related: #1946, #2908
Authored-by: coletdjnz
|
2022-03-18 22:19:36 +00:00 |
|
 coletdevandGitHub
|
a2e77303e3
|
[downloader/http] Retry on more errors (#3065)
Closes #3056, #2071
Related: #3034, #2969
Authored-by: coletdjnz
|
2022-03-18 22:10:20 +00:00 |
|
coletdjnz
|
5dbc77df26
|
[youtube:api] Prefer minified JSON response
Authored-by: coletdjnz
|
2022-03-16 09:29:15 +13:00 |
|
 coletdevandGitHub
|
b3edc8068e
|
[downloader/mhtml] Fix fragments with absolute urls (#3044)
Authored-by: coletdjnz
|
2022-03-13 22:03:40 +00:00 |
|
 coletdevandGitHub
|
17322130a9
|
[youtube] Improve video upload date handling (#3029)
* Don't prefer UTC upload date for past live streams/premieres
* Improve regex (fixes a regression)
Authored-by: coletdjnz
|
2022-03-13 22:02:44 +00:00 |
|
coletdjnz
|
a825ffbffa
|
[extractor] Support merging subtitles with data
Authored-by: coletdjnz
|
2022-03-12 11:22:28 +13:00 |
|
 coletdevandGitHub
|
e248be3319
|
[panopto] Add extractors (#2908)
Based on https://github.com/ytdl-org/youtube-dl/pull/13449
Closes #1946
Authored by: coletdjnz, kmark
|
2022-03-08 13:00:57 -08:00 |
|
 coletdevandGitHub
|
4390d5ec12
|
Add brotli content-encoding support (#2433)
Authored by: coletdjnz
|
2022-03-08 08:44:05 -08:00 |
|
 coletdevandpukkandan
|
992f9a730b
|
[youtube] Prefer UTC upload date for videos (#2223)
Except for live/scheduled streams/premieres.
Closes #1881
Related: #2402
Authored-by: coletdjnz
|
2022-03-08 12:58:19 +05:30 |
|
 coletdevandGitHub
|
ded9f32667
|
[extractor] Support --mark-watched without _NETRC_MACHINE (#2939)
Authored by: coletdjnz
|
2022-03-03 23:27:09 -08:00 |
|
 coletdevandGitHub
|
7c219ea601
|
[youtube:tab] Follow redirect to regional channel (#2884)
Closes #2694
Authored by: coletdjnz
|
2022-02-28 21:08:19 -08:00 |
|
 coletdevandGitHub
|
60f393e48b
|
[youtube] Ensure subtitle urls are absolute (#2765)
Closes #2755
Authored by: coletdjnz
|
2022-02-13 13:36:01 -08:00 |
|
coletdjnz
|
af5c1c553e
|
[youtube] Fix search extractor
Regression introduced in https://github.com/yt-dlp/yt-dlp/commit/16aa9ea41dd0a575c6c2d6945d3f8fe3bb42b327. Closes #2628
Authored-by: coletdjnz
|
2022-02-04 10:32:56 +13:00 |
|
coletdjnz
|
87e8e8a7d0
|
[youtube:api] Do not use seek when reading HTTPError response
Authored-by: coletdjnz
|
2022-01-23 19:11:32 +13:00 |
|