Merge pull request #3022 from MikeCol/Extremetube_title

title extraction condition less restrictive
This commit is contained in:
Sergey M. 2014-06-03 19:59:08 +07:00
commit 3374f3fdc2
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class ExtremeTubeIE(InfoExtractor):
webpage = self._download_webpage(req, video_id)
video_title = self._html_search_regex(
r'<h1 [^>]*?title="([^"]+)"[^>]*>\1<', webpage, 'title')
r'<h1 [^>]*?title="([^"]+)"[^>]*>', webpage, 'title')
uploader = self._html_search_regex(
r'>Posted by:(?=<)(?:\s|<[^>]*>)*(.+?)\|', webpage, 'uploader',
fatal=False)