From 0e344b806f1cc2ebc8274b040c4ca9d86ac81e2e Mon Sep 17 00:00:00 2001 From: grqx_wsl <173253225+grqx@users.noreply.github.com> Date: Sat, 2 Nov 2024 02:11:49 +1300 Subject: [PATCH] [ie/boomplaypodcast]extract full description --- yt_dlp/extractor/boomplay.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/yt_dlp/extractor/boomplay.py b/yt_dlp/extractor/boomplay.py index 7349e03b49..3672ba7e4c 100644 --- a/yt_dlp/extractor/boomplay.py +++ b/yt_dlp/extractor/boomplay.py @@ -289,7 +289,7 @@ class BoomplayPodcastIE(BoomplayBaseIE): 'info_dict': { 'id': '5372', 'title': 'TED Talks Daily', - 'description': 'md5:541182e787ce8fd578c835534c907077', + 'description': r're:(?s)Every weekday, TED Talks Daily brings you the latest talks .{328} learn something new\.$', 'thumbnail': 'https://source.boomplaymusic.com/group10/M00/12/22/6f9cf97ad6f846a0a7882c98dfcf4f8c_320_320.jpg', 'repost_count': int, 'comment_count': int, @@ -319,7 +319,6 @@ def _real_extract(self, url): return self.playlist_result( song_list, playlist_id, playlist_title=self._og_search_title(webpage, fatal=True).rsplit('|', 2)[0].strip(), - playlist_description=self._og_search_description(webpage, default=''), **self._extract_page_metadata(webpage, playlist_id))