[drtuber] Fix title extraction

This commit is contained in:
Sergey M․ 2016-11-06 21:29:15 +07:00
parent 519d897049
commit f5c4b06f17
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -42,7 +42,7 @@ class DrTuberIE(InfoExtractor):
r'<source src="([^"]+)"', webpage, 'video URL')
title = self._html_search_regex(
(r'class="title_watch"[^>]*><p>([^<]+)<',
(r'class="title_watch"[^>]*><(?:p|h\d+)[^>]*>([^<]+)<',
r'<p[^>]+class="title_substrate">([^<]+)</p>',
r'<title>([^<]+) - \d+'),
webpage, 'title')