summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-07-17 11:06:34 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-07-17 11:06:34 +0200
commit88d4111cfa2f88a323de5ae0a8e75942530fa67d (patch)
tree112e2ae494ea00ae1b7e0b43e8c4f75cdefeacd2
parent51fb64bab1143b1f8f7251cd582b76b7f93b637d (diff)
downloadyoutube-dl-88d4111cfa2f88a323de5ae0a8e75942530fa67d.tar.gz
youtube-dl-88d4111cfa2f88a323de5ae0a8e75942530fa67d.tar.xz
youtube-dl-88d4111cfa2f88a323de5ae0a8e75942530fa67d.zip
[youtube] Add code for signature 92 (Closes #1060)
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 91cd2192f..dcc0d80c8 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -195,6 +195,8 @@ class YoutubeIE(InfoExtractor):
             return s[36] + s[79:67:-1] + s[81] + s[66:40:-1] + s[33] + s[39:36:-1] + s[40] + s[35] + s[0] + s[67] + s[32:0:-1] + s[34]
         elif len(s) == 81:
             return s[6] + s[3:6] + s[33] + s[7:24] + s[0] + s[25:33] + s[2] + s[34:53] + s[24] + s[54:81]
+        elif len(s) == 92:
+            return s[25] + s[3:25] + s[0] + s[26:42] + s[79] + s[43:79] + s[91] + s[80:83];
 
         else:
             raise ExtractorError(u'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s)))