1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-28 20:21:09 +02:00

[facebook] Improve title regex (Closes #5816)

This commit is contained in:
Sergey M․ 2015-05-27 21:25:07 +06:00
parent f0bfaa2d7d
commit bf24c3d017

View File

@ -152,7 +152,7 @@ def _real_extract(self, url):
raise ExtractorError('Cannot find video formats')
video_title = self._html_search_regex(
r'<h2 class="uiHeaderTitle">([^<]*)</h2>', webpage, 'title',
r'<h2\s+[^>]*class="uiHeaderTitle"[^>]*>([^<]*)</h2>', webpage, 'title',
default=None)
if not video_title:
video_title = self._html_search_regex(