diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-04 17:57:46 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-04 17:57:46 +0600 |
commit | 17d1900581ffd12866e56640080ce340d99149a2 (patch) | |
tree | 2c03a03fe42dfe7c3a9dd936d234b203df78c42e | |
parent | 5d501a0901c36695c9d6ca3958ac4ccfdea90954 (diff) |
[vk] Fix view count extraction (Closes #7353)
-rw-r--r-- | youtube_dl/extractor/vk.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/youtube_dl/extractor/vk.py b/youtube_dl/extractor/vk.py index 765e9e6fd..01960b827 100644 --- a/youtube_dl/extractor/vk.py +++ b/youtube_dl/extractor/vk.py @@ -281,9 +281,13 @@ class VKIE(InfoExtractor): mobj.group(1) + ' ' + mobj.group(2) upload_date = unified_strdate(mobj.group(1) + ' ' + mobj.group(2)) - view_count = str_to_int(self._search_regex( - r'"mv_views_count_number"[^>]*>([\d,.]+) views<', - info_page, 'view count', fatal=False)) + view_count = None + views = self._html_search_regex( + r'"mv_views_count_number"[^>]*>(.+?\bviews?)<', + info_page, 'view count', fatal=False) + if views: + view_count = str_to_int(self._search_regex( + r'([\d,.]+)', views, 'view count', fatal=False)) formats = [{ 'format_id': k, |