Skip to content

Commit

Permalink
[viewster] reduce format requests
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed Oct 26, 2018
1 parent b99b0bc commit 7d9e858
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions youtube_dl/extractor/viewster.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,16 @@ def _real_extract(self, url):
def concat(suffix, sep='-'):
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'):
media = self._download_json(
'https://public-api.viewster.com/movies/%s/video' % entry_id,
video_id, 'Downloading %s JSON' % concat(media_type, ' '), fatal=False, query={
'mediaType': media_type,
'language': audio,
'subtitle': subtitle,
})
if not media:
continue
medias = self._download_json(
'https://public-api.viewster.com/movies/%s/videos' % entry_id,
video_id, fatal=False, query={
'mediaTypes': ['application/f4m+xml', 'application/x-mpegURL', 'video/mp4'],
'language': audio,
'subtitle': subtitle,
})
if not medias:
continue
for media in medias:
video_url = media.get('Uri')
if not video_url:
continue
Expand Down

0 comments on commit 7d9e858

Please sign in to comment.