1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-08-13 16:08:29 +00:00
This commit is contained in:
yuan 2025-08-07 08:00:26 -07:00
parent 25f13a1717
commit df676f59cd

View File

@ -360,7 +360,7 @@ def _real_extract(self, url):
m3u8_content = traverse_obj(ev_data, ('data', 'program', 'video', 2, 'm3u8'))
m3u8_base64 = base64.b64encode(m3u8_content.encode('utf-8')).decode('ascii')
m3u8_data_url = f'data:application/vnd.apple.mpegurl;base64,{m3u8_base64}'
title = traverse_obj(download_info,('videoInfo','title'))
title = traverse_obj(download_info, ('videoInfo', 'title'))
formats = [{
'format_id': 'default',