瀏覽代碼

[youtube] Recognize signature functions that contain '$' (fixes #3104)

Jaime Marquínez Ferrándiz 11 年之前
父節點
當前提交
c26e9ac4b2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/extractor/youtube.py

+ 1 - 1
youtube_dl/extractor/youtube.py

@@ -440,7 +440,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
 
 
     def _parse_sig_js(self, jscode):
     def _parse_sig_js(self, jscode):
         funcname = self._search_regex(
         funcname = self._search_regex(
-            r'signature=([a-zA-Z]+)', jscode,
+            r'signature=([$a-zA-Z]+)', jscode,
              u'Initial JS player signature function name')
              u'Initial JS player signature function name')
 
 
         jsi = JSInterpreter(jscode)
         jsi = JSInterpreter(jscode)