|
 |
|
|
|
|
|
GTA Modification Forums
[WIP] San Andreas Audio Toolkit (SAAT) programs to modify streams/sfx
 |
|
 |
| |
pdescobar  |
Posted: Saturday, Jan 7 2006, 06:03
|
Conformist Scum Panda

Group: Members
Joined: Jul 19, 2005


|
| QUOTE (ashdexx @ Jan 6 2006, 21:58) | | He hasn't come back saying its been delayed, or announced any other date for its release. Lets not start the "whens it gon b don?????" stuff, especially so close. We've been patient so far, just keep it that way. | Thank you ash. Yes, it will be up later today; I'm polishing up the documentation and have frozen code development until release so I don't go screwing anything up at the last minute. I'm in the Eastern time zone, so there will be an announcement here sometime within the next 23 hours.
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
pdescobar  |
Posted: Saturday, Jan 7 2006, 11:49
|
Conformist Scum Panda

Group: Members
Joined: Jul 19, 2005


|
Please forgive the 5 1/2-hour bump; I felt it was important in this isolated instance.
SAAT version 1.00 has been released. The first post has been updated. The important bits for the impatient:Feedback, suggestions, etc are greatly appreciated.
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
creative madman  |
Posted: Saturday, Jan 7 2006, 12:51
|
Street Cat

Group: Members
Joined: Oct 29, 2005


|
man, hahahahahaha, ur going 2 have to go through the files to find the sound u want, i doubt many people woudld know the EXACT file, the thing ive found when looking through the sounds in a GTA game, is that they are commonly in groups, ie, the car sounds are with the car sounds, teh voices are with the same of the same voice, look for ambience once
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
pdescobar  |
Posted: Saturday, Jan 7 2006, 13:21
|
Conformist Scum Panda

Group: Members
Joined: Jul 19, 2005


|
| QUOTE (NathanHenry @ Jan 7 2006, 07:43) | | so now that the SAAT tool kit is out how would I go about extracting the Marco's Bistro Interior opera music file from the AMBIENCE file in the SA folder to like my destop or hard drive in like MP3 or OGG or WAV format. |
@creative: Actually, becuase Nathan is looking for a track from a stream, we know exactly where it is. If it was a sound effect, then he'd have to search. But, in large part because of previous radio extraction tools, the stream contents are now pretty much fully described. Browse through the metadata-full.ini file and you'll see what I mean.
Nathan PMed me with this, but since it's a fairly simple example and he also asked here, I'll share my response.
| QUOTE | 1) Unzip the archive. 2) Copy "saat_stream.exe" to the folder where the game is installed. 3) Open a command prompt window; Start menu > All Programs > Accessories > Command Prompt 4) Assuming your SA is installed in the default directory, type the following in the command prompt window:
| CODE | | cd "C:\Program Files\Rockstar Games\GTA San Andreas" |
5) Now type
| CODE | | saat_stream -e audio\streams\AMBIENCE c:\temp\saat |
6) This will create a directory called c:\temp\saat\AMBIENCE. In that directory will be 40 Ogg Vorbis files. The St Mark's Bistro AMBIENCE is called something like "Track_009.ogg" 7) Play it in Winamp or another audio program. |
In order to keep things simple and because I already know which track he wants, I'm using the simple extraction mode in the above example. For more practical use, it would make sense to use the RFSA extraction mode and then pick out the wanted file based on the descriptive filename. That process would look like this.
| QUOTE | 1) Unzip the archive. 2) Copy "saat_stream.exe" and "metadata-full.ini" to the folder where the game is installed. 3) Open a command prompt window; Start menu > All Programs > Accessories > Command Prompt 4) Assuming your SA is installed in the default directory, type the following in the command prompt window:
| CODE | | cd "C:\Program Files\Rockstar Games\GTA San Andreas" |
5) Now type
| CODE | | saat_stream -r audio\streams\AMBIENCE c:\temp\saat metadata-full.ini |
6) This will create a directory called c:\temp\saat\AMBIENCE. In that directory will be 40 Ogg Vorbis files. Based upon the filenames, you should be able to identify the St Mark's Bistro ambience quickly and easily. 7) Play it in Winamp or another audio program. |
I expect to have several questions similar to this, though. That's why I'm thinking drag-and-drop might be a real smart thing to add on for the next update.
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
Simon.  |
Posted: Saturday, Jan 7 2006, 23:37
|
Gangsta

Group: The Connection
Joined: Feb 1, 2005


|
| QUOTE (Scrag @ Jan 8 2006, 11:20) | | hi, i'm new to all this. i dont have a clue what to do with all the files in the zip folder. i downloaded the zip, extracted the folder to desktop, but what now? what do i do with the files in folder. im lost! i really want to be able to use this. there are some tracks i want to remove from radio x and put other songs in. | | QUOTE (pdescobar) | | QUOTE (NathanHenry @ Jan 7 2006, 07:43) | | so now that the SAAT tool kit is out how would I go about extracting the Marco's Bistro Interior opera music file from the AMBIENCE file in the SA folder to like my destop or hard drive in like MP3 or OGG or WAV format. |
@creative: Actually, becuase Nathan is looking for a track from a stream, we know exactly where it is. If it was a sound effect, then he'd have to search. But, in large part because of previous radio extraction tools, the stream contents are now pretty much fully described. Browse through the metadata-full.ini file and you'll see what I mean.
Nathan PMed me with this, but since it's a fairly simple example and he also asked here, I'll share my response.
| QUOTE | 1) Unzip the archive. 2) Copy "saat_stream.exe" to the folder where the game is installed. 3) Open a command prompt window; Start menu > All Programs > Accessories > Command Prompt 4) Assuming your SA is installed in the default directory, type the following in the command prompt window:
| CODE | | cd "C:\Program Files\Rockstar Games\GTA San Andreas" |
5) Now type
| CODE | | saat_stream -e audio\streams\AMBIENCE c:\temp\saat |
6) This will create a directory called c:\temp\saat\AMBIENCE. In that directory will be 40 Ogg Vorbis files. The St Mark's Bistro AMBIENCE is called something like "Track_009.ogg" 7) Play it in Winamp or another audio program. |
In order to keep things simple and because I already know which track he wants, I'm using the simple extraction mode in the above example. For more practical use, it would make sense to use the RFSA extraction mode and then pick out the wanted file based on the descriptive filename. That process would look like this.
| QUOTE | 1) Unzip the archive. 2) Copy "saat_stream.exe" and "metadata-full.ini" to the folder where the game is installed. 3) Open a command prompt window; Start menu > All Programs > Accessories > Command Prompt 4) Assuming your SA is installed in the default directory, type the following in the command prompt window:
| CODE | | cd "C:\Program Files\Rockstar Games\GTA San Andreas" |
5) Now type
| CODE | | saat_stream -r audio\streams\AMBIENCE c:\temp\saat metadata-full.ini |
6) This will create a directory called c:\temp\saat\AMBIENCE. In that directory will be 40 Ogg Vorbis files. Based upon the filenames, you should be able to identify the St Mark's Bistro ambience quickly and easily. 7) Play it in Winamp or another audio program. |
I expect to have several questions similar to this, though. That's why I'm thinking drag-and-drop might be a real smart thing to add on for the next update. |
You do not know what to do with the files? As stated above, you must copy "saat_stream.exe" to the folder where the game is installed. Now continue reading this very well explained tutorial by pdescobar .
Suggestion: If you do get to the stage of GUI making, maybe add a play button so you could select/highlight a file in the archive and listen to it without actually extracting it.
Excellent work pdescobar .
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
AleX AciD  |
|
Toxicated

Group: Members
Joined: Jan 2, 2006


|
| QUOTE (tzesun @ Jan 7 2006, 21:00) | Noticed in your README, at the "II. SFX Tool" section, it says
" 1. Open a command prompt window and cd to the GTASA install directory 2. At the command prompt type the following: saat_sfx -e audio\streams\GENRL c:\temp\saat"
The GENRL file is actually in the "audio\sfx" folder. |
It's really there, like other sfx files.
| QUOTE (tzesun @ Jan 7 2006, 21:00) | | I used to commands "saat_sfx -e audio\sfx\GENRL c:\temp". Only comes up with the same information that appears when you open the program without any commands. How do I get it to work?? |
I get this trouble too, and I solve it
| CODE | | saat_sfx -e audio\sfx\GENRL e:\temp\sa-sfx audio\CONFIG\BankLkup.dat |
pdescobar, This post has been edited by AleX AciD on Sunday, Jan 8 2006, 01:02
|
|
|
|
|
 |
|
 |
 |
|
 |
| |
0 User(s) are reading this topic (0 Guests and 0 Anonymous Users)
0 Members:
Pages:
(20) 1 [2] 3 4 ... Last »
Track this topic
Receive email notification when a reply has been made to this topic and you are not active on the board.
Subscribe to this forum
Receive email notification when a new topic is posted in this forum and you are not active on the board.
Download / Print this Topic
Download this topic in different formats or view a printer friendly version.
| |
 |
|
 |
|
|
|
|