[once] check http formats availability
This commit is contained in:
parent
0d33166ec5
commit
6187091532
1 changed files with 6 additions and 5 deletions
|
@ -14,13 +14,12 @@ class OnceIE(InfoExtractor):
|
|||
def _extract_once_formats(self, url):
|
||||
domain_id, application_id, media_item_id = re.match(
|
||||
OnceIE._VALID_URL, url).groups()
|
||||
adaptive_formats = self._extract_m3u8_formats(
|
||||
formats = self._extract_m3u8_formats(
|
||||
self.ADAPTIVE_URL_TEMPLATE % (
|
||||
domain_id, application_id, media_item_id),
|
||||
media_item_id, 'mp4', m3u8_id='hls', fatal=False)
|
||||
formats = []
|
||||
formats.extend(adaptive_formats)
|
||||
for adaptive_format in adaptive_formats:
|
||||
progressive_formats = []
|
||||
for adaptive_format in formats:
|
||||
rendition_id = self._search_regex(
|
||||
r'/now/media/playlist/[^/]+/[^/]+/([^/]+)',
|
||||
adaptive_format['url'], 'redition id', default=None)
|
||||
|
@ -33,5 +32,7 @@ class OnceIE(InfoExtractor):
|
|||
'hls', 'http'),
|
||||
'protocol': 'http',
|
||||
})
|
||||
formats.append(progressive_format)
|
||||
progressive_formats.append(progressive_format)
|
||||
self._check_formats(progressive_formats, media_item_id)
|
||||
formats.extend(progressive_formats)
|
||||
return formats
|
||||
|
|
Loading…
Reference in a new issue