Important information: this site is currently scheduled to go offline indefinitely by end of the year.

*.STR Files

Read or post about compression. And decompression. Or ask questions how to decompress your files.
Post Reply
User avatar
Simpson55
ultra-n00b
Posts: 7
Joined: Mon Apr 04, 2016 4:46 am
Has thanked: 3 times

*.STR Files

Post by Simpson55 »

Hi :)
I'm ripping some stuff from an xbox (original) game and I noticed that ~90% of the files have an -STR extension, all the sites I've found say these are music files but the music files in this game are -MUS files, whilst the other audio files are easily openable -EXA files.
So I'd say these -STR files contain compressed models and textures but I prefer to ask just to be sure, does anyone here know what else it could be?
Thanks :)
WRS
ultra-veteran
ultra-veteran
Posts: 603
Joined: Fri Nov 06, 2009 12:13 am
Has thanked: 74 times
Been thanked: 137 times

Re: *.STR Files

Post by WRS »

they could be anything but most likely some sort of archive format

what game is it? do you have any samples?
Useful tool links:
User avatar
Simpson55
ultra-n00b
Posts: 7
Joined: Mon Apr 04, 2016 4:46 am
Has thanked: 3 times

Re: *.STR Files

Post by Simpson55 »

It's from the game From Russia With Love, I've posted a topic about the PSP version on the Graphic File formats forum but this time it's the xbox (original) version.

Here are some of the files : https://www.sendspace.com/file/5s59rt
WRS
ultra-veteran
ultra-veteran
Posts: 603
Joined: Fri Nov 06, 2009 12:13 am
Has thanked: 74 times
Been thanked: 137 times

Re: *.STR Files

Post by WRS »

so it is archive format, but nowhere near straightward :?
Useful tool links:
User avatar
Simpson55
ultra-n00b
Posts: 7
Joined: Mon Apr 04, 2016 4:46 am
Has thanked: 3 times

Re: *.STR Files

Post by Simpson55 »

So there's no known way to open these files ?
WRS
ultra-veteran
ultra-veteran
Posts: 603
Joined: Fri Nov 06, 2009 12:13 am
Has thanked: 74 times
Been thanked: 137 times

Re: *.STR Files

Post by WRS »

Simpson55 wrote:So there's no known way to open these files ?
not without spending time reversing the format (which is what this forum does). i didn't get very far:

Code: Select all

//--------------------------------------
//--- 010 Editor v5.0 Binary Template
//--------------------------------------

void align() {
  FSeek((FTell()+2047)& ~2047);
}

char coTS[4];
uint a, b, c, d;

struct Entry
{
  uint a, b;
  uint unkn;
  uint c;
  uint len;
  char oname[len];
  uint pad[4];
  uint len2;
  char name[len2];
  uint fnlen;
  char fn[fnlen];

  ubyte data[b];
};

align();Entry e1;
align();Entry e2;
FSeek(0x7e800);
//ushort skipme;
Entry e3;
Useful tool links:
User avatar
Simpson55
ultra-n00b
Posts: 7
Joined: Mon Apr 04, 2016 4:46 am
Has thanked: 3 times

Re: *.STR Files

Post by Simpson55 »

Oh ok, although, I don't know how to use 010 editor :scaredy:
User avatar
Simpson55
ultra-n00b
Posts: 7
Joined: Mon Apr 04, 2016 4:46 am
Has thanked: 3 times

Re: *.STR Files

Post by Simpson55 »

Sorry to be insistent but is anyone able to give me some advice on how to open these pesky files or at least on how I could figure out how to do it by myself ? :keke:
Post Reply