Browse Source

[xminus] update tkn extraction regex

t0mm0 10 years ago
parent
commit
313d4572ce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/xminus.py

+ 1 - 1
youtube_dl/extractor/xminus.py

@@ -50,7 +50,7 @@ class XMinusIE(InfoExtractor):
             webpage, 'view count', fatal=False))
             webpage, 'view count', fatal=False))
 
 
         enc_token = self._html_search_regex(
         enc_token = self._html_search_regex(
-            r'data-mt="(.*?)"', webpage, 'enc_token')
+            r'minus_track\.tkn="(.+?)"', webpage, 'enc_token')
         token = ''.join(
         token = ''.join(
             c if pos == 3 else compat_chr(compat_ord(c) - 1)
             c if pos == 3 else compat_chr(compat_ord(c) - 1)
             for pos, c in enumerate(reversed(enc_token)))
             for pos, c in enumerate(reversed(enc_token)))