up vote 4 down vote favorite
4
share [g+] share [fb]

I would like to decompile a .swf file and get all the images from it, in python.

Are there any libraries that do this?

link|improve this question

77% accept rate
feedback

3 Answers

up vote 4 down vote accepted

The SWFTools distribution has a command line program, SWFExtract, that can do this. You could call that from python to do what you want:

http://www.swftools.org/

http://www.swftools.org/swfextract.html

link|improve this answer
feedback

I don't think there are any libraries available for python, but maybe you can have an offline process to decompile swf using sothink flash decompiler Also I did not come across any decompiler so far that is 100% accurate.

link|improve this answer
feedback

There are no public swf decompiler libraries for Python.

Use a 3rd party program and the Python subprocess module to execute it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.