Browse Source

[crunchyroll:playlist] Fix and relax title extraction (closes #21291, closes #21443)

Sergey M․ 6 years ago
parent
commit
4681441d2f
1 changed files with 2 additions and 3 deletions
  1. 2 3
      youtube_dl/extractor/crunchyroll.py

+ 2 - 3
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)