youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit b3d39be2393b3e5199d1abc3000d96ded3c4e4d7
parent 135773497857f04469219e97a5d09350f61672b0
Author: Remita Amine <remitamine@gmail.com>
Date:   Thu,  8 Aug 2019 23:23:48 +0100

[discovery] extract series meta field(#21808)

Diffstat:
Myoutube_dl/extractor/discovery.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/discovery.py b/youtube_dl/extractor/discovery.py @@ -94,6 +94,8 @@ class DiscoveryIE(DiscoveryGoBaseIE): self._API_BASE_URL + 'content/videos', display_id, 'Downloading content JSON metadata', headers=headers, query={ + 'embed': 'show.name', + 'fields': 'authenticated,description.detailed,duration,episodeNumber,id,name,parental.rating,season.number,show,tags', 'slug': display_id, 'show_slug': show_slug, })[0]