How to convert .Nitro to SWF

stephan2681

New Member
Dec 3, 2014
1
0
Hi, I had a question.

Is it possible to convert .nitro files to SWF files? If so, how does it work and what do you need for it?

Thank you in advance! :D
 

boz

don daddy
Mar 23, 2021
205
99
It is possible but there are no tools publicly available.


You’ll have to read the binary structure of the .nitro and extract each file’s metadata and content.

Decompress zlib data

Store each file individually: Save decompressed files as SWF files.

Here’s the .nitro format :

Code:
uint16 - files count


foreach file {


    uint16 - file name length


    string - file name


    uint32 - zlib file size


    raw bytes - zlib file contents


}
 

Users who are viewing this thread

Top