mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-08 23:07:06 +01:00
[youporn] Fix title extraction (closes #13456)
This commit is contained in:
parent
9be9ec5980
commit
97b6e30113
@ -68,9 +68,12 @@ class YouPornIE(InfoExtractor):
|
|||||||
webpage = self._download_webpage(request, display_id)
|
webpage = self._download_webpage(request, display_id)
|
||||||
|
|
||||||
title = self._search_regex(
|
title = self._search_regex(
|
||||||
[r'(?:video_titles|videoTitle)\s*[:=]\s*(["\'])(?P<title>.+?)\1',
|
[r'(?:video_titles|videoTitle|title)\s*[:=]\s*(["\'])(?P<title>(?:(?!\1).)+)\1',
|
||||||
r'<h1[^>]+class=["\']heading\d?["\'][^>]*>([^<])<'],
|
r'<h1[^>]+class=["\']heading\d?["\'][^>]*>(?P<title>[^<]+)<'],
|
||||||
webpage, 'title', group='title')
|
webpage, 'title', group='title',
|
||||||
|
default=None) or self._og_search_title(
|
||||||
|
webpage, default=None) or self._html_search_meta(
|
||||||
|
'title', webpage, fatal=True)
|
||||||
|
|
||||||
links = []
|
links = []
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user