Browse Source

Merge pull request #4950 from peugeot/drtuber

[drtuber] fix extraction
totalwebcasting
Sergey M. 10 years ago
parent
commit
c2787701cc
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

@ -36,7 +36,7 @@ class DrTuberIE(InfoExtractor):
r'<source src="([^"]+)"', webpage, 'video URL')
title = self._html_search_regex(
r'<title>([^<]+)\s*-\s*Free', webpage, 'title')
r'<title>([^<]+) - \d+', webpage, 'title')
thumbnail = self._html_search_regex(
r'poster="([^"]+)"',


Loading…
Cancel
Save