Eran
Eran

Reputation: 1702

Decompile swf files and output a log file

I am looking for a script that will go through ~75,000 SWF files that we have, will decompile each and find all the Shapes/Elements which size is greater than x.

The output should look smthng like: SWF Filename "SWF Path" "SWF overall Size" "Element Name" "Element Size"....

Does anybody know of a software that might be able to handle that task?

How do decompile scripts work ? would it be easy to write something to handle the above task?

Thanks

Upvotes: 1

Views: 489

Answers (2)

izb
izb

Reputation: 51761

There's a .NET based parser called SWFModeller that forms part of the Swiffotron project. It would be able to parse and then inspect the shapes in the SWF.

Upvotes: 0

alxx
alxx

Reputation: 9897

You'll need to know SWF format basics and shapes/frames definitions. Make an AIR app that will read files and parse them. Surprisingly, ActionScript is probably best way to parse SWF.

Upvotes: 2

Related Questions