From df676f59cd6f55d829112e82de0090b73b4ac02e Mon Sep 17 00:00:00 2001 From: yuan Date: Thu, 7 Aug 2025 08:00:26 -0700 Subject: [PATCH] Motified --- yt_dlp/extractor/iqiyi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/iqiyi.py b/yt_dlp/extractor/iqiyi.py index 4b8fa5d35..db2e99e97 100644 --- a/yt_dlp/extractor/iqiyi.py +++ b/yt_dlp/extractor/iqiyi.py @@ -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',