This commit is contained in:
MyNey 2024-05-12 08:50:19 +05:30 committed by GitHub
commit 40102f5463
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 20 additions and 3 deletions

View File

@ -1,4 +1,5 @@
from .common import InfoExtractor
from ..compat import compat_urllib_parse_urlparse
from ..utils import (
clean_html,
ExtractorError,
@ -276,8 +277,16 @@ class VidioLiveIE(VidioBaseIE):
display_id, note='Downloading HLS token JSON', data=b'')
formats.extend(self._extract_m3u8_formats(
sources['source'] + '?' + token_json.get('token', ''), display_id, 'mp4', 'm3u8_native'))
if str_or_none(sources.get('source_dash')):
pass
if str_or_none(sources.get('source_dash')): # TODO: Find live example with source_dash
parsed_base_dash = compat_urllib_parse_urlparse(sources['source_dash'])
token_json = self._download_json(
'https://www.vidio.com/live/%s/tokens?type=dash' % video_id,
display_id, note='Downloading DASH token JSON', data=b'')
parsed_tokenized_dash = parsed_base_dash._replace(path=token_json.get('token', '')
+ (parsed_base_dash.path if parsed_base_dash.path[0] == '/'
else '/' + parsed_base_dash.path))
formats.extend(self._extract_mpd_formats(
parsed_tokenized_dash.geturl(), display_id, 'dash'))
else:
if stream_meta.get('stream_token_url'):
token_json = self._download_json(
@ -287,7 +296,15 @@ class VidioLiveIE(VidioBaseIE):
stream_meta['stream_token_url'] + '?' + token_json.get('token', ''),
display_id, 'mp4', 'm3u8_native'))
if stream_meta.get('stream_dash_url'):
pass
parsed_base_dash = compat_urllib_parse_urlparse(stream_meta['stream_dash_url'])
token_json = self._download_json(
'https://www.vidio.com/live/%s/tokens?type=dash' % video_id,
display_id, note='Downloading DASH token JSON', data=b'')
parsed_tokenized_dash = parsed_base_dash._replace(path=token_json.get('token', '')
+ (parsed_base_dash.path if parsed_base_dash.path[0] == '/'
else '/' + parsed_base_dash.path))
formats.extend(self._extract_mpd_formats(
parsed_tokenized_dash.geturl(), display_id, 'dash'))
if stream_meta.get('stream_url'):
formats.extend(self._extract_m3u8_formats(
stream_meta['stream_url'], display_id, 'mp4', 'm3u8_native'))