- video_url = self._html_search_regex(r'"video_url":"([^"]+)', webpage, u'video_url')
- if webpage.find('"encrypted":true')!=-1:
- password = self._html_search_regex(r'"video_title":"([^"]+)', webpage, u'password')
- video_url = aes_decrypt_text(video_url, password, 32).decode('utf-8')
- path = compat_urllib_parse_urlparse(video_url).path
- extension = os.path.splitext(path)[1][1:]
- format = path.split('/')[4].split('_')[:2]
- format = "-".join(format)
+ like_count = int_or_none(self._search_regex(
+ r'rupVar\s*=\s*"(\d+)"', webpage, 'like count', fatal=False))
+ dislike_count = int_or_none(self._search_regex(
+ r'rdownVar\s*=\s*"(\d+)"', webpage, 'dislike count', fatal=False))
+ view_count = str_to_int(self._search_regex(
+ r'<strong>Views: </strong>([\d,\.]+)\s*</li>',
+ webpage, 'view count', fatal=False))
+ comment_count = str_to_int(self._search_regex(
+ r'<span id="allCommentsCount">(\d+)</span>',
+ webpage, 'comment count', fatal=False))