[sunporno] Fix duration extraction and make more robust
authorSergey M․ <dstftw@gmail.com>
Wed, 1 Oct 2014 13:44:43 +0000 (20:44 +0700)
committerSergey M․ <dstftw@gmail.com>
Wed, 1 Oct 2014 13:44:43 +0000 (20:44 +0700)
youtube_dl/extractor/sunporno.py

index 7de3c9dd5014586a118ab3eb55365897d160945d..263f09b4645fa8b6255f1216e99cab27afce2bee 100644 (file)
@@ -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))