[sztvhu] Fix the title extraction

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-10-15 08:22:59 +02:00
parent e772692ffd
commit 9d74e308f7
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class SztvHuIE(InfoExtractor):
video_file = self._search_regex(
r'file: "...:(.*?)",', webpage, 'video file')
title = self._html_search_regex(
r'<meta name="title" content="([^"]*) - [^-]*"',
r'<meta name="title" content="([^"]*?) - [^-]*? - [^-]*?"',
webpage, 'video title')
description = self._html_search_regex(
r'<meta name="description" content="([^"]*)"/>',