mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[viewster] reduce format requests
This commit is contained in:
parent
b99b0bcfa0
commit
7d9e858132
|
@ -130,16 +130,16 @@ class ViewsterIE(InfoExtractor):
|
||||||
def concat(suffix, sep='-'):
|
def concat(suffix, sep='-'):
|
||||||
return (base_format_id + '%s%s' % (sep, suffix)) if base_format_id else suffix
|
return (base_format_id + '%s%s' % (sep, suffix)) if base_format_id else suffix
|
||||||
|
|
||||||
for media_type in ('application/f4m+xml', 'application/x-mpegURL', 'video/mp4'):
|
medias = self._download_json(
|
||||||
media = self._download_json(
|
'https://public-api.viewster.com/movies/%s/videos' % entry_id,
|
||||||
'https://public-api.viewster.com/movies/%s/video' % entry_id,
|
video_id, fatal=False, query={
|
||||||
video_id, 'Downloading %s JSON' % concat(media_type, ' '), fatal=False, query={
|
'mediaTypes': ['application/f4m+xml', 'application/x-mpegURL', 'video/mp4'],
|
||||||
'mediaType': media_type,
|
'language': audio,
|
||||||
'language': audio,
|
'subtitle': subtitle,
|
||||||
'subtitle': subtitle,
|
})
|
||||||
})
|
if not medias:
|
||||||
if not media:
|
continue
|
||||||
continue
|
for media in medias:
|
||||||
video_url = media.get('Uri')
|
video_url = media.get('Uri')
|
||||||
if not video_url:
|
if not video_url:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue