[vodlocker] Allow title to end with a <br>

This commit is contained in:
Philipp Hagemeister 2014-08-23 14:39:45 +02:00
parent bc0bb6fd30
commit b7b04c9234
1 changed files with 1 additions and 1 deletions

View File

@ -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(