Browse Source

[mixcloud] Fix view count extraction (Closes #8831, closes #8845)

Sergey M․ 9 years ago
parent
commit
7f4173ae7c
1 changed files with 3 additions and 2 deletions
  1. 3 2
      youtube_dl/extractor/mixcloud.py

+ 3 - 2
youtube_dl/extractor/mixcloud.py

@@ -7,6 +7,7 @@ from ..compat import compat_urllib_parse_unquote
 from ..utils import (
 from ..utils import (
     ExtractorError,
     ExtractorError,
     HEADRequest,
     HEADRequest,
+    parse_count,
     str_to_int,
     str_to_int,
 )
 )
 
 
@@ -85,8 +86,8 @@ class MixcloudIE(InfoExtractor):
         uploader_id = self._search_regex(
         uploader_id = self._search_regex(
             r'\s+"profile": "([^"]+)",', webpage, 'uploader id', fatal=False)
             r'\s+"profile": "([^"]+)",', webpage, 'uploader id', fatal=False)
         description = self._og_search_description(webpage)
         description = self._og_search_description(webpage)
-        like_count = str_to_int(self._search_regex(
-            r'\bbutton-favorite\b[^>]+m-ajax-toggle-count="([^"]+)"',
+        like_count = parse_count(self._search_regex(
+            r'\bbutton-favorite[^>]+>.*?<span[^>]+class=["\']toggle-number[^>]+>\s*([^<]+)',
             webpage, 'like count', fatal=False))
             webpage, 'like count', fatal=False))
         view_count = str_to_int(self._search_regex(
         view_count = str_to_int(self._search_regex(
             [r'<meta itemprop="interactionCount" content="UserPlays:([0-9]+)"',
             [r'<meta itemprop="interactionCount" content="UserPlays:([0-9]+)"',