Browse Source

[drtuber] Fix title extraction

totalwebcasting
Sergey M․ 8 years ago
parent
commit
f5c4b06f17
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/drtuber.py

+ 1
- 1
youtube_dl/extractor/drtuber.py 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')


Loading…
Cancel
Save