mirror of https://github.com/yt-dlp/yt-dlp.git
[letv] LetvCloud: Detect ext instead of the hardcoded one
This commit is contained in:
parent
0428106da3
commit
bec30224ff
|
@ -19,6 +19,7 @@ from ..utils import (
|
||||||
int_or_none,
|
int_or_none,
|
||||||
str_or_none,
|
str_or_none,
|
||||||
encode_data_uri,
|
encode_data_uri,
|
||||||
|
url_basename,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -295,12 +296,17 @@ class LetvCloudIE(InfoExtractor):
|
||||||
else:
|
else:
|
||||||
raise ExtractorError('Letv cloud returned an unknwon error')
|
raise ExtractorError('Letv cloud returned an unknwon error')
|
||||||
|
|
||||||
|
def b64decode(s):
|
||||||
|
return base64.b64decode(s.encode('utf-8')).decode('utf-8')
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
for media in play_json['data']['video_info']['media'].values():
|
for media in play_json['data']['video_info']['media'].values():
|
||||||
play_url = media['play_url']
|
play_url = media['play_url']
|
||||||
|
url = b64decode(play_url['main_url'])
|
||||||
|
decoded_url = b64decode(url_basename(url))
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': base64.b64decode(play_url['main_url'].encode('utf-8')).decode('utf-8'),
|
'url': url,
|
||||||
'ext': 'mp4',
|
'ext': determine_ext(decoded_url),
|
||||||
'format_id': int_or_none(play_url.get('vtype')),
|
'format_id': int_or_none(play_url.get('vtype')),
|
||||||
'format_note': str_or_none(play_url.get('definition')),
|
'format_note': str_or_none(play_url.get('definition')),
|
||||||
'width': int_or_none(play_url.get('vwidth')),
|
'width': int_or_none(play_url.get('vwidth')),
|
||||||
|
|
Loading…
Reference in New Issue