logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 3fbd27f73ef1f3507443d0e0907a4c0b19a63ed8
parent 0382ecb78d763abf579e686c56085877eef7897c
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 17 Jul 2014 23:22:49 +0200

[youtube] SWF parser: Add opcode 86

Yes, I know we need 96, but an implementation of 86 could help avoid a similar issue.

Diffstat:

Myoutube_dl/extractor/youtube.py7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -799,6 +799,13 @@ class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor): raise NotImplementedError( u'Unsupported (void) property %r on %r' % (mname, obj)) + elif opcode == 86: # newarray + arg_count = u30(coder) + arr = [] + for i in range(arg_count): + arr.append(stack.pop()) + arr = arr[::-1] + stack.append(arr) elif opcode == 93: # findpropstrict index = u30(coder) mname = multinames[index]