1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 14:41:04 +02:00

Fix FunnyOrDie extraction for a special video (#789)

This commit is contained in:
Philipp Hagemeister 2013-04-18 06:21:46 +02:00
parent 32c96387c1
commit bfdf469295

View File

@ -3703,6 +3703,8 @@ def _real_extract(self, url):
video_url = unescapeHTML(m.group('url'))
m = re.search(r"<h1 class='player_page_h1'.*?>(?P<title>.*?)</h1>", webpage, flags=re.DOTALL)
if not m:
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'))