mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 03:27:06 -05:00 
			
		
		
		
	[vk] Fix view count extraction (Closes #7353)
This commit is contained in:
		@@ -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,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user