commit: b7b04c92348d25346f2a09f3f193b7a174969cbb
parent bc0bb6fd30ba9b2e2fbdd6d43c307d54015aca6e
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Sat, 23 Aug 2014 14:39:45 +0200
[vodlocker] Allow title to end with a <br>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/vodlocker.py b/youtube_dl/extractor/vodlocker.py
@@ -44,7 +44,7 @@ class VodlockerIE(InfoExtractor):
req, video_id, 'Downloading video page')
title = self._search_regex(
- r'id="file_title".*?>\s*(.*?)\s*<span', webpage, 'title')
+ r'id="file_title".*?>\s*(.*?)\s*<(?:br|span)', webpage, 'title')
thumbnail = self._search_regex(
r'image:\s*"(http[^\"]+)",', webpage, 'thumbnail')
url = self._search_regex(