aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-17release 2020.11.172020.11.17Sergey M․
2020-11-17[ChangeLog] ActualizeSergey M․
[ci skip]
2020-11-17[youtube:tab] Fix extraction with cookies provided (closes #27005)Sergey M․
2020-11-16[lrt] fix extraction with empty tags(closes #20264)Remita Amine
2020-11-17[ndr:embed:base] Extract subtitles (closes #25447, closes #26106)Sergey M․
2020-11-17[servus] Add support for pm-wissen.com (closes #25869)Sergey M․
2020-11-17[servus] Fix extraction (closes #26872, closes #26967, closes #26983, closes ↵Sergey M․
#27000)
2020-11-17[xtube] Fix extraction (closes #26996)Sergey M․
2020-11-17[utils] Skip ! prefixed code in js_to_jsonSergey M․
2020-11-16[lrt] fix extractionRemita Amine
2020-11-16[lbry] Add new extractorRemita Amine
2020-11-16[condenast] fix extraction and extract subtitlesRemita Amine
2020-11-16[bandcamp] fix extractionRemita Amine
2020-11-16[rai] fix RaiPlay extractionRemita Amine
2020-11-16[extractors] Remove VLivePlaylistIE importRemita Amine
2020-11-16[vlive] fix extractionRemita Amine
2020-11-16[usanetwork] fix extractionRemita Amine
2020-11-16[nbc] fix NBCNews/Today/MSNBC extractionRemita Amine
2020-11-16[devscripts/make_lazy_extractors] Correct a spelling mistake (#26991)Edward Betts
2020-11-16[cnbc] fix extractionRemita Amine
2020-11-16[youtube] Remove RIAA copyrighted media from tests as per [1]Sergey M․
1. Github dmca and 1201 notice re youtube-dl 9-21-20
2020-11-12release 2020.11.122020.11.12Sergey M․
2020-11-12[ChangeLog] ActualizeSergey M․
[ci skip]
2020-11-12[youtube] Rework extractorsSergey M․
WIP
2020-11-01release 2020.11.01.12020.11.01.1Sergey M․
2020-11-01release 2020.11.012020.11.01Sergey M․
2020-11-01[ChangeLog] ActualizeSergey M․
[ci skip]
2020-11-01[youtube] Fix JS player URL extractionSergey M․
2020-10-23[ytsearch] Fix extraction (closes #26920)Sergey M․
2020-10-22[afreecatv] Fix typo (#26970)Toan Nguyen
2020-10-20[23video] Relax _VALID_URL (#26870)Hannu Hartikainen
2020-10-18[utils] Don't attempt to coerce JS strings to numbers in js_to_json (#26851)Kevin O'Connor
The current logic in `js_to_json` tries to rewrite octal/hex numbers to decimal. However, when the logic actually happens the `"` or `'` have already been trimmed off. This causes what were originally strings, that happen to look like octal/hex numbers, to get rewritten to decimal and returned as a number rather than a string. In practive something like: ```js { "0x40": "foo", "040": "bar", } ``` would get rewritten as: ```json { 64: "foo", 32: "bar } ``` This is problematic since this isn't valid JSON as you cannot have non-string keys.
2020-10-17[ustream] Add support for video.ibm.com (#26894)Sergio Livi
2020-10-17[iqiyi] Fix typo (#26884)Felix Yan
2020-09-24[expressen] Add support for di.se (closes #26670)Sergey M․
2020-09-24[iprima] Improve video id extraction (#26507) (closes #26494)Surkal
2020-09-24[README.md] Fix autonumber sequence description (refs #26686)Sergey M․
2020-09-22[downloader/http] Properly handle missing message in SSLError (closes #26646)Sergey M․
2020-09-22[downloader/http] Fix access to not yet opened stream in retrySergey M․
2020-09-20release 2020.09.202020.09.20Sergey M․
2020-09-20[ChangeLog] ActualizeSergey M․
[ci skip]
2020-09-20[redtube] Extend _VALID_URL (#26506)nixxo
2020-09-20[twitch] Switch streams to GraphQL and refactor (closes #26535)Sergey M․
2020-09-19[telequebec] Fix issues (closes #26368)Sergey M․
2020-09-19[telequebec] Add support for brightcove videos (closes #25833)Patrick Dessalle
2020-09-19[pornhub] Extract metadata from JSON-LD (closes #26614)Sergey M․
2020-09-19[extractor/common] Relax interaction count extraction in _json_ldSergey M․
2020-09-19[extractor/common] Extract author as uploader for VideoObject in _json_ldSergey M․
2020-09-19[pornhub] Fix view count extraction (#26621) (refs #26614)JChris246
2020-09-18[downloader/hls] Fix incorrect end byte in Range HTTP header for media ↵Stefan Pöschel
segments with EXT-X-BYTERANGE (#24512) (closes #14748) The end of the byte range is the first byte that is NOT part of the to be downloaded range. So don't include it into the requested HTTP download range, as this additional byte leads to a broken TS packet and subsequently to e.g. visible video corruption. Fixes #14748.