Quote:
Originally Posted by ffxdean
How can i find the headers of the file???
I know where to locate them on the disc, as i have the table of each fmv located in the game.
|
the program creates the header / converts FF7DoC compressed pss to uncompressed pss (don't know)
when you get a corrupted header, it dumps wrong data.
i never really looked into DCFF7tomov, i can't say much how the program dumps.
but what i know is, there is a compressed table on the DVD where all PSS are listed. (FILELIST.BIN)
when i remember correctly, this Filelist.bin has 2 tables,
1. Table = File Offsets and size for KEL.DAT together with data from compressed tables.
2. Table = Offset and size of the compressed tables inside of Filelist.bin (this tables are compressed with Zlib)
uncompressed example:
Code:
0:1cf9c0:17fd03:data/sound2/wave0000.wd
0 = offset
1cf9c0 = uncompressed size
17fd03 = compressed size (when the file is uncompressed, it has the same size as uncompressed)
data/sound2/wave0000.wd = file path
nearby all files from DoC are compressed with Zlib
maybe you can simple use Zlib to get the movies, but i never tried it.