diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-02-14 18:50:13 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-02-14 18:50:13 +0600 |
commit | 76d1466b08d4e3cebc40a7fb7dae957c3b34b1eb (patch) | |
tree | b986abaa080b6dfb18f75246633d59e2cad25d49 /youtube_dl | |
parent | 1888d3f7b3a4d8b0ee9eec347cfad2d23784ee25 (diff) |
[drtuber] Add one more title regex
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/drtuber.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/drtuber.py b/youtube_dl/extractor/drtuber.py index 2f06e64cc..37c5c181f 100644 --- a/youtube_dl/extractor/drtuber.py +++ b/youtube_dl/extractor/drtuber.py @@ -15,7 +15,7 @@ class DrTuberIE(InfoExtractor): 'id': '1740434', 'display_id': 'hot-perky-blonde-naked-golf', 'ext': 'mp4', - 'title': 'Hot Perky Blonde Naked Golf', + 'title': 'hot perky blonde naked golf', 'like_count': int, 'dislike_count': int, 'comment_count': int, @@ -36,7 +36,8 @@ class DrTuberIE(InfoExtractor): r'<source src="([^"]+)"', webpage, 'video URL') title = self._html_search_regex( - r'<title>([^<]+) - \d+', webpage, 'title') + [r'class="hd_title" style="[^"]+">([^<]+)</h1>', r'<title>([^<]+) - \d+'], + webpage, 'title') thumbnail = self._html_search_regex( r'poster="([^"]+)"', |