mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-20 05:47:24 +01:00
[ie/threespeak] Extractor fix
This commit is contained in:
parent
ef36d517f9
commit
c140c63faa
@ -46,17 +46,6 @@ def _real_extract(self, url):
|
||||
f'https://ipfs.3speak.tv/ipfs/{ipfs_m3u8}', video_id, fatal=False, m3u8_id='ipfs')
|
||||
formats.extend(ipfs_frmts)
|
||||
subtitles = self._merge_subtitles(subtitles, ipfs_subs)
|
||||
mp4_file = try_get(video_json, lambda x: x['video']['info']['file'])
|
||||
if mp4_file:
|
||||
formats.append({
|
||||
'url': f'https://threespeakvideo.b-cdn.net/{video_id}/{mp4_file}',
|
||||
'ext': 'mp4',
|
||||
'format_id': 'https-mp4',
|
||||
'duration': try_get(video_json, lambda x: x['video']['info']['duration']),
|
||||
'filesize': try_get(video_json, lambda x: x['video']['info']['filesize']),
|
||||
'quality': 11,
|
||||
'format_note': 'Original file',
|
||||
})
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': data_json.get('title') or data_json.get('root_title'),
|
||||
|
Loading…
Reference in New Issue
Block a user