logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: bfdf4692955b3ea300b8f6ae30b8b69127922f7e
parent 32c96387c1837103b5cdde4b4c39b9653f2e0181
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 18 Apr 2013 06:21:46 +0200

Fix FunnyOrDie extraction for a special video (#789)

Diffstat:

Myoutube_dl/InfoExtractors.py4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -3704,7 +3704,9 @@ class FunnyOrDieIE(InfoExtractor): m = re.search(r"<h1 class='player_page_h1'.*?>(?P<title>.*?)</h1>", webpage, flags=re.DOTALL) if not m: - self._downloader.trouble(u'Cannot find video title') + m = re.search(r'<title>(?P<title>[^<]+?)</title>', webpage) + if not m: + self._downloader.trouble(u'Cannot find video title') title = clean_html(m.group('title')) m = re.search(r'<meta property="og:description" content="(?P<desc>.*?)"', webpage)