diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-01-09 00:29:10 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-01-09 00:29:10 +0600 |
commit | 6a16fd4a1ad1dbd9372f75ddffce1e9fe95b002c (patch) | |
tree | f83876b65cc87aa2292c323fe8ccbce1dc55d4c9 | |
parent | 44731e308cdcc89fda1e613e094aa23de33f5c9e (diff) |
[xhamster] Fix view count extraction
-rw-r--r-- | youtube_dl/extractor/xhamster.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py index 2b9ac2419..ccee77359 100644 --- a/youtube_dl/extractor/xhamster.py +++ b/youtube_dl/extractor/xhamster.py @@ -89,9 +89,9 @@ class XHamsterIE(InfoExtractor): r'(["\'])duration\1\s*:\s*(["\'])(?P<duration>.+?)\2', webpage, 'duration', fatal=False, group='duration')) - view_count = self._html_search_regex(r'<span>Views:</span> ([^<]+)</div>', webpage, 'view count', fatal=False) - if view_count: - view_count = str_to_int(view_count) + view_count = int_or_none(self._search_regex( + r'content=["\']User(?:View|Play)s:(\d+)', + webpage, 'view count', fatal=False)) mobj = re.search(r"hint='(?P<likecount>\d+) Likes / (?P<dislikecount>\d+) Dislikes'", webpage) (like_count, dislike_count) = (mobj.group('likecount'), mobj.group('dislikecount')) if mobj else (None, None) |