From: Sergey M․ Date: Wed, 1 Oct 2014 13:44:43 +0000 (+0700) Subject: [sunporno] Fix duration extraction and make more robust X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=59d206ca2d0aa77b0f739d7262e113722d5eee16;p=youtube-dl [sunporno] Fix duration extraction and make more robust --- diff --git a/youtube_dl/extractor/sunporno.py b/youtube_dl/extractor/sunporno.py index 7de3c9dd5..263f09b46 100644 --- a/youtube_dl/extractor/sunporno.py +++ b/youtube_dl/extractor/sunporno.py @@ -39,10 +39,10 @@ class SunPornoIE(InfoExtractor): r'poster="([^"]+)"', webpage, 'thumbnail', fatal=False) duration = parse_duration(self._search_regex( - r'Duration: (\d+:\d+)', webpage, 'duration', fatal=False)) + r'Duration:\s*(\d+:\d+)\s*<', webpage, 'duration', fatal=False)) view_count = int_or_none(self._html_search_regex( - r'(\d+)', webpage, 'view count', fatal=False)) + r'class="views">\s*(\d+)\s*<', webpage, 'view count', fatal=False)) comment_count = int_or_none(self._html_search_regex( r'(\d+) Comments?', webpage, 'comment count', fatal=False))