[minhateca] Fix duration parsing

This commit is contained in:
Philipp Hagemeister 2014-12-04 17:35:40 +01:00
parent ab07963b5c
commit e8df5cee12
3 changed files with 21 additions and 6 deletions

View file

@ -8,6 +8,7 @@ from ..compat import (
)
from ..utils import (
int_or_none,
parse_duration,
parse_filesize,
)
@ -52,8 +53,8 @@ class MinhatecaIE(InfoExtractor):
filesize_approx = parse_filesize(self._html_search_regex(
r'<p class="fileSize">(.*?)</p>',
webpage, 'file size approximation', fatal=False))
duration = int_or_none(self._html_search_regex(
r'(?s)<p class="fileLeng[ht][th]">.*?([0-9]+)\s*s',
duration = parse_duration(self._html_search_regex(
r'(?s)<p class="fileLeng[ht][th]">.*?class="bold">(.*?)<',
webpage, 'duration', fatal=False))
view_count = int_or_none(self._html_search_regex(
r'<p class="downloadsCounter">([0-9]+)</p>',