I have an Archos 605 media player which apparently uses a proprietary format for the graphics files used as wallpaper.
I and other users would like to be able to convert to and from this format to something more useful, like a simple BMP format.
Someone on an Archos forum has already done a basic analysis of one of the files and it looks like it may be a fairly simple 1k header followed by an uncompressed bitmap, see below:
Anyone here willing to take a crack at this?
I and other users would like to be able to convert to and from this format to something more useful, like a simple BMP format.
Someone on an Archos forum has already done a basic analysis of one of the files and it looks like it may be a fairly simple 1k header followed by an uncompressed bitmap, see below:
Code:
well, looking at the files, they are quite large, so I guess uncompressed.
One file I have starts like this:
Code:
[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 0123456789012345]
000000: 12 46 54 41 00 EE 02 00 00 00 01 EE 04 00 00 00 |.FTA............|
000016: 00 00 02 EE 04 00 00 00 00 00 03 EE 02 00 20 03 |.............. .|
000032: 04 EE 02 00 E0 01 08 EE 80 00 02 00 00 00 00 00 |................|
000048: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000064: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
FTA = ATF backwards and lots of 00 and EE, but also 0x0320 and 0x01E which is 800 and 480.
now 800 x 480 x 2 = 768000 and the file size is 769028 = 768000 + 1028
So, look like uncompressed 16bit per sample, most likely YUV and a small header at the start.




Comment