Browse Source

[nowtv] Do not request unnecessary metadata

Sergey M․ 10 years ago
parent
commit
ff4a1279f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/nowtv.py

+ 1 - 1
youtube_dl/extractor/nowtv.py

@@ -115,7 +115,7 @@ class NowTVIE(InfoExtractor):
         station = mobj.group('station')
 
         info = self._download_json(
-            'https://api.nowtv.de/v3/movies/%s?fields=*,format,files,breakpoints,paymentPaytypes,trailers,pictures' % display_id,
+            'https://api.nowtv.de/v3/movies/%s?fields=*,format,files' % display_id,
             display_id)
 
         video_id = compat_str(info['id'])