diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-10-01 20:44:43 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-10-01 20:44:43 +0700 |
commit | 59d206ca2d0aa77b0f739d7262e113722d5eee16 (patch) | |
tree | e2d00924440a540973512e5e7f62f6e0b73e94d3 | |
parent | e7b6d12254702a4aa6a9f54420f80e6ea456b120 (diff) |
[sunporno] Fix duration extraction and make more robust
-rw-r--r-- | youtube_dl/extractor/sunporno.py | 4 |
1 files changed, 2 insertions, 2 deletions
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'<span>Duration: (\d+:\d+)</span>', webpage, 'duration', fatal=False)) + r'Duration:\s*(\d+:\d+)\s*<', webpage, 'duration', fatal=False)) view_count = int_or_none(self._html_search_regex( - r'<span class="views">(\d+)</span>', 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+)</b> Comments?', webpage, 'comment count', fatal=False)) |