aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-06-22 00:07:26 +0700
committerSergey M․ <dstftw@gmail.com>2019-06-22 00:07:26 +0700
commit4681441d2faf54615962029c7240601e339281bb (patch)
treeb4b87175bbee50d5179bb306df331eacc42c8a4c
parent9842d29d660b1ffe7873823542085879ba9d86a8 (diff)
downloadyoutube-dl-4681441d2faf54615962029c7240601e339281bb.tar.xz
[crunchyroll:playlist] Fix and relax title extraction (closes #21291, closes #21443)
-rw-r--r--youtube_dl/extractor/crunchyroll.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/crunchyroll.py b/youtube_dl/extractor/crunchyroll.py
index 588c3c71b..75b56ee42 100644
--- a/youtube_dl/extractor/crunchyroll.py
+++ b/youtube_dl/extractor/crunchyroll.py
@@ -661,9 +661,8 @@ class CrunchyrollShowPlaylistIE(CrunchyrollBaseIE):
webpage = self._download_webpage(
self._add_skip_wall(url), show_id,
headers=self.geo_verification_headers())
- title = self._html_search_regex(
- r'(?s)<h1[^>]*>\s*<span itemprop="name">(.*?)</span>',
- webpage, 'title')
+ title = self._html_search_meta('name', webpage, default=None)
+
episode_paths = re.findall(
r'(?s)<li id="showview_videos_media_(\d+)"[^>]+>.*?<a href="([^"]+)"',
webpage)