youtube-dl:master

Last commit made on 2020-10-22
Get this branch:
git clone -b master https://git.launchpad.net/youtube-dl

Branch merges

Branch information

Name:
master
Repository:
lp:youtube-dl

Recent commits

48c5663... by Toan Nguyen <email address hidden>

[afreecatv] Fix typo (#26970)

7d740e7... by Hannu Hartikainen

[23video] Relax _VALID_URL (#26870)

4eda104... by Kevin O'Connor <email address hidden>

[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.

6055357... by Sergio Livi <email address hidden>

[ustream] Add support for video.ibm.com (#26894)

1050e0d... by Felix Yan

[iqiyi] Fix typo (#26884)

d65d891... by =?utf-8?b?U2VyZ2V5IE3igKQ=?= <email address hidden>

[expressen] Add support for di.se (closes #26670)

0c92f1e... by Surkal <email address hidden>

[iprima] Improve video id extraction (#26507) (closes #26494)

adae9e8... by =?utf-8?b?U2VyZ2V5IE3igKQ=?= <email address hidden>

[README.md] Fix autonumber sequence description (refs #26686)

c5764b3... by =?utf-8?b?U2VyZ2V5IE3igKQ=?= <email address hidden>

[downloader/http] Properly handle missing message in SSLError (closes #26646)

0837992... by =?utf-8?b?U2VyZ2V5IE3igKQ=?= <email address hidden>

[downloader/http] Fix access to not yet opened stream in retry