youtube-dl

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

commit 6dfa0602f059397d9a41ef382d9dfa8b432ff0fa
parent 28fb109ed0276e85207966ac925e9885c2ed0e7b
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 13 Jul 2015 22:11:05 +0600

[nowtv] Fix extraction (Closes #6169)

Diffstat:
Myoutube_dl/extractor/nowtv.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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'])