9448a20312
[condenast] fix extraction and extract subtitles
2020-11-16 18:57:56 +01:00
3f1748b944
[bandcamp] fix extraction
2020-11-16 17:26:09 +01:00
fe13087cd1
[rai] fix RaiPlay extraction
2020-11-16 17:17:52 +01:00
f22fa82d7f
[extractors] Remove VLivePlaylistIE import
2020-11-16 16:36:56 +01:00
059fa9aa81
[vlive] fix extraction
2020-11-16 16:35:08 +01:00
650aec4a98
[usanetwork] fix extraction
2020-11-16 16:21:48 +01:00
2ea9c97432
[nbc] fix NBCNews/Today/MSNBC extraction
2020-11-16 16:18:37 +01:00
efc589b865
[devscripts/make_lazy_extractors] Correct a spelling mistake ( #26991 )
2020-11-16 22:08:20 +07:00
1737ea69b9
[cnbc] fix extraction
2020-11-16 15:55:07 +01:00
1fb034d029
[youtube] Remove RIAA copyrighted media from tests as per [1]
...
1. Github dmca and 1201 notice re youtube-dl 9-21-20
2020-11-16 21:08:16 +07:00
28f9568a84
release 2020.11.12
2020.11.12
2020-11-12 06:23:46 +07:00
5bbdadd5f8
[ChangeLog] Actualize
...
[ci skip]
2020-11-12 06:18:16 +07:00
2de2ca6659
[youtube] Rework extractors
...
WIP
2020-11-12 06:16:37 +07:00
051071203c
release 2020.11.01.1
2020.11.01.1
2020-11-01 08:58:40 +07:00
34299510bb
release 2020.11.01
2020.11.01
2020-11-01 08:52:27 +07:00
b9bceba37c
[ChangeLog] Actualize
...
[ci skip]
2020-11-01 07:34:20 +07:00
6d4733ce7b
[youtube] Fix JS player URL extraction
2020-11-01 06:52:00 +07:00
416da574ec
[ytsearch] Fix extraction ( closes #26920 )
2020-10-23 21:31:37 +07:00
48c5663c5f
[afreecatv] Fix typo ( #26970 )
2020-10-22 19:15:05 +07:00
7d740e7dc7
[23video] Relax _VALID_URL ( #26870 )
2020-10-20 00:56:23 +07:00
4eda10499e
[utils] Don't attempt to coerce JS strings to numbers in js_to_json ( #26851 )
...
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-18 00:10:41 +07:00
605535776a
[ustream] Add support for video.ibm.com ( #26894 )
2020-10-17 23:14:46 +07:00
1050e0d09f
[iqiyi] Fix typo ( #26884 )
2020-10-17 23:02:17 +07:00
d65d89183f
[expressen] Add support for di.se ( closes #26670 )
2020-09-24 07:37:10 +07:00
0c92f1e96b
[iprima] Improve video id extraction ( #26507 ) ( closes #26494 )
2020-09-24 06:46:58 +07:00
adae9e844b
[README.md] Fix autonumber sequence description (refs #26686 )
2020-09-24 06:36:07 +07:00
c5764b3f89
[downloader/http] Properly handle missing message in SSLError ( closes #26646 )
2020-09-22 07:01:59 +07:00
0837992a22
[downloader/http] Fix access to not yet opened stream in retry
2020-09-22 06:44:14 +07:00
b55715934b
release 2020.09.20
2020.09.20
2020-09-20 12:30:45 +07:00
bbc3b5b4bb
[ChangeLog] Actualize
...
[ci skip]
2020-09-20 12:24:32 +07:00
1ca5f821c8
[redtube] Extend _VALID_URL ( #26506 )
2020-09-20 11:39:42 +07:00
defc820b70
[twitch] Switch streams to GraphQL and refactor ( closes #26535 )
2020-09-20 10:05:00 +07:00
82ef02e936
[telequebec] Fix issues ( closes #26368 )
2020-09-19 07:56:00 +07:00
b856b3997c
[telequebec] Add support for brightcove videos ( closes #25833 )
2020-09-19 07:52:57 +07:00
cd85a1bb8b
[pornhub] Extract metadata from JSON-LD ( closes #26614 )
2020-09-19 06:34:34 +07:00
ce5b904050
[extractor/common] Relax interaction count extraction in _json_ld
2020-09-19 06:33:17 +07:00
ad06b99dd4
[extractor/common] Extract author as uploader for VideoObject in _json_ld
2020-09-19 06:13:42 +07:00
540b9f5164
[pornhub] Fix view count extraction ( #26621 ) (refs #26614 )
2020-09-19 05:59:19 +07:00
6e65a2a67e
[downloader/hls] Fix incorrect end byte in Range HTTP header for media 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 .
2020-09-18 05:26:56 +07:00
f8c7bed133
[extractor/common] Handle ssl.CertificateError in _request_webpage ( closes #26601 )
...
ssl.CertificateError is raised on some python versions <= 3.7.x
2020-09-18 03:41:16 +07:00
cdc55e666f
[downloader/http] Improve timeout detection when reading block of data (refs #10935 )
2020-09-18 03:32:54 +07:00
86b7c00adc
[downloader/http] Retry download when urlopen times out ( #26603 ) (refs #10935 )
2020-09-18 03:15:44 +07:00
e8c5d40bc8
release 2020.09.14
2020.09.14
2020-09-14 03:37:36 +07:00
ca7ebc4e5e
[ChangeLog] Actualize
...
[ci skip]
2020-09-14 03:35:18 +07:00
bff857a8af
[postprocessor/embedthumbnail] Fix issues ( closes #25717 )
...
* Fix WebP with wrong extension processing
* Fix embedding of thumbnails with % character in path
2020-09-14 03:28:31 +07:00
a31a022efd
[postprocessor/embedthumbnail] Add support for non jpeg/png thumbnails ( closes #25687 )
2020-09-14 03:10:01 +07:00
45f6362464
[rtlnl] Extend _VALID_URL for new embed URL schema
2020-09-13 21:42:06 +07:00
97f34a48d7
[rtlnl] Extend _VALID_URL ( #26549 ) ( closes #25821 )
2020-09-13 21:38:16 +07:00
ea74e00b3a
[youtube] Fix empty description extraction ( #26575 ) ( closes #26006 )
2020-09-13 21:23:21 +07:00
06cd4cdb25
[srgssr] Extend _VALID_URL ( closes #26555 , closes #26556 , closes #26578 )
2020-09-13 21:07:25 +07:00