mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-19 01:45:13 +00:00
[nowtv] Do not request unnecessary metadata
This commit is contained in:
parent
9b254aa177
commit
ff4a1279f2
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ def _real_extract(self, url):
|
||||||
station = mobj.group('station')
|
station = mobj.group('station')
|
||||||
|
|
||||||
info = self._download_json(
|
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)
|
display_id)
|
||||||
|
|
||||||
video_id = compat_str(info['id'])
|
video_id = compat_str(info['id'])
|
||||||
|
|
Loading…
Reference in a new issue