Update vidio.py

This commit is contained in:
MinePlayersPE 2021-08-24 09:18:27 +07:00
parent a70f889927
commit deab7eb786

View file

@ -262,8 +262,8 @@ def _real_extract(self, url):
display_id, note='Downloading HLS token JSON', data=b'') display_id, note='Downloading HLS token JSON', data=b'')
formats.extend(self._extract_m3u8_formats( formats.extend(self._extract_m3u8_formats(
sources['source'] + '?' + token_json.get('token', ''), display_id, 'mp4', 'm3u8_native')) sources['source'] + '?' + token_json.get('token', ''), display_id, 'mp4', 'm3u8_native'))
if str_or_none(sources.get('source_dash')): if str_or_none(sources.get('source_dash')): # TODO: Find live example with source_dash
parsed_base_dash = compat_urllib_parse_urlparse(stream_meta['stream_dash_url']) parsed_base_dash = compat_urllib_parse_urlparse(sources['source_dash'])
token_json = self._download_json( token_json = self._download_json(
'https://www.vidio.com/live/%s/tokens?type=dash' % video_id, 'https://www.vidio.com/live/%s/tokens?type=dash' % video_id,
display_id, note='Downloading DASH token JSON', data=b'') display_id, note='Downloading DASH token JSON', data=b'')