diff --git a/youtube_dl/extractor/libsyn.py b/youtube_dl/extractor/libsyn.py index 0ad168826..a8b58dd6b 100644 --- a/youtube_dl/extractor/libsyn.py +++ b/youtube_dl/extractor/libsyn.py @@ -44,7 +44,8 @@ class LibsynIE(InfoExtractor): webpage = self._download_webpage(url, video_id) podcast_title = self._search_regex( - r'

([^<]+)

', webpage, 'podcast title', default=None) + r'(?:
|

)([^<]+)<', webpage, + 'podcast title', default=None, flags=re.MULTILINE) if podcast_title: podcast_title = podcast_title.strip() episode_title = self._search_regex(