From: Sergey M․ Date: Mon, 13 Jul 2015 16:11:05 +0000 (+0600) Subject: [nowtv] Fix extraction (Closes #6169) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=6dfa0602f059397d9a41ef382d9dfa8b432ff0fa;p=youtube-dl [nowtv] Fix extraction (Closes #6169) --- diff --git a/youtube_dl/extractor/nowtv.py b/youtube_dl/extractor/nowtv.py index 173e46cd8..0b5ff4760 100644 --- a/youtube_dl/extractor/nowtv.py +++ b/youtube_dl/extractor/nowtv.py @@ -133,7 +133,7 @@ class NowTVIE(InfoExtractor): station = mobj.group('station') info = self._download_json( - 'https://api.nowtv.de/v3/movies/%s?fields=*,format,files' % display_id, + 'https://api.nowtv.de/v3/movies/%s?fields=id,title,free,geoblocked,articleLong,articleShort,broadcastStartDate,seoUrl,duration,format,files' % display_id, display_id) video_id = compat_str(info['id'])