Header: SDASSETF
Contains images
Don't know how to extract them
.ast archive (No sound!)
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: .ast archive (No sound!)
There is something I can't understand about the length of the filenames and where the data of the file starts, but it's not a problem since we can use a work-around to guess it.
So this script for quickbms simply dumps the data without the useless "IMAG" "Rev " header:
But I have no idea how to open/read that image.
Feel free to ask in the Graphics section.
So this script for quickbms simply dumps the data without the useless "IMAG" "Rev " header:
Code: Select all
endian big
idstring "SDASSETF"
get DUMMY long # 1
get FILES long
for i = 0 < FILES
idstring "BMAP"
get DUMMY long
get DUMMY long
get SIZE long
get NAME string
findloc OFFSET binary "IMAG"
math OFFSET + 0x14
math SIZE - 0x14
log NAME OFFSET SIZE
math OFFSET + SIZE
goto OFFSET
next i
Feel free to ask in the Graphics section.
-
- Posts: 5
- Joined: Thu Feb 03, 2022 9:26 pm
Re: .ast archive (No sound!)
Ahhh I was so hoping to see your name popping up. Thank you so much for this and everything you do ^^