How to convert .Nitro to SWF

boz

don daddy
Mar 23, 2021
203
98
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