Age | Commit message (Collapse) | Author |
|
|
|
#27000)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1. Github dmca and 1201 notice re youtube-dl 9-21-20
|
|
|
|
WIP
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
#26601)
ssl.CertificateError is raised on some python versions <= 3.7.x
|
|
#10935)
|
|
|
|
|
|
* Fix WebP with wrong extension processing
* Fix embedding of thumbnails with % character in path
|
|
(closes #25687)
|
|
|
|
|
|
|
|
|