Previous Page | Next Page
- uf remix by kooz at 10:42 PM EDT on August 9, 2011
- Enslaved: Odyssey To The West - extract music , ambient and other sounds by Peets at 11:27 AM EDT on August 10, 2011
- Hi guys!
I recently played Enslaved: Odyssey To The West and I like the instrumental and acoustic atmosphere of the game. I want to almost completely expand/extend the Original Soundtrack because there are very great ingame music / sounds what I really miss from the OST.
So far I was able to get the PS3 and also the x360 version, from the x360 version extracted some possible music files than extracted them to folders, for instance:
- there is a file called: "ch12_music_m12.xxx"
- extracted its contents to a "folder ch12_music_m12" with gildor's ue extractor ( THX to Gildor ).
- there is a "Wwise_Music" folder, and within a file called "music_m12.WwiseBank"
So I think it's a file from Wwise SDK from company Audiokinetic. Sadly I don't have the x360 SDK license for Wwise SDK and I can't open the upper mentioned file with it.
I searched some posts / forums about that file format and end up here.
I tried ww2ogg.exe without any success so far.
- first I tried like "ww2ogg.exe music_m12.WwiseBank" and got:
Input: music_m12.WwiseBank
Parse error: missing RIFF
...no success
- second time I found some posts what should I do the bottom of the link below:
http://forum.xentax.com/viewtopic.php?f=17&t=3477&start=30
...I deleted with a HEX editor the file's contents until it starts with " RIFX " ( cc 2 kBytes )
than run again "ww2ogg.exe music_m12.WwiseBank" and got:
Input: music_m12.WwiseBank
Parse error: RIFF truncated
So far I got here guys. Could somebody help me how can I extract the actual sound(s) from it? ANY suggestions would be pretty highly appreciated! I would realy like to expand/extend the OST.
I uploaded the original "music_m12.WwiseBank" file to several sites:
2shared.com
Uploading.com
Speedyshare.com
Megaupload.com
Sendspace.com
Please, help me to gain success. If you have some time please download and If you can help me I would be "Monkeyly" happy because It's a great game whit great sound assets TOO! Have a nice week, a nice life and unlimited success in life to all of you!
edited 11:45 AM EDT August 10, 2011
- Ripping Minna no Rhythm Tengoku Sounds/Voices by Shin Star at 12:22 AM EDT on August 11, 2011
- I was wondering anybody could help me out with this little problem I have. I managed to rip the music with ripping mama but the sound/voices are skipped. I managed to rip everything (?) with vgmtoolbox, but everything is all named as rev_tengoku_00000000.rwav, rev_tengoku_000000A0.rwav, etc. brsar unpack doesn't seem to work. Ripping mama ripped them nicely in folders (i.e. PLAYER_BGM1/GROUP_REMIX4/WSD_REMIX4.rwav)
I was wondering if there was a way to rip the rest of the sounds like that. Would be nice...
Edit: Here's the brsar file if anybody is interested:
http://www.megaupload.com/?d=338VJNQC
edited 1:39 AM EDT August 11, 2011
- Disable looping on minigsf files? by OoPpEe at 8:49 PM EDT on August 11, 2011
- I know you didn't do the plugin, however last question I had; I got good answers that solved my issue - whereas others just gave me a runaround or no replies at all.
I ripped some music from a GBA game, I already got it in minigsf format. My issue now is it loops infinitely, I want it to just play once and then stop.
Is there a automatic way to find where it loops and stop it there? I am doing the manual way right now, but a automatic would be so much easier and better.
- Another addition to the HCS Forum package by Captain Ron at 1:19 AM EDT on August 12, 2011
- As you all know, even though it's actually easy to implement the HCS Forum on any website that supports PHP & MySQL, most people who decide to use computers are either n00bs, or don't know how to research old forum topics to dig up scattered source code snippets.
So, I created an automated installation script for the forum! Here's the full source for the installation script:
<?php
$File1 = "dblogin.php";
$File2 = "dblogin_write.php";
$setup_dump = "hcsforumsetup.sql";
if (file_exists($File1) && file_exists($File2))
{
print "The forum is already installed.";
}
else
{
$Handle1 = fopen($File1, 'w');
$Handle2 = fopen($File2, 'w');
$Handle3 = fopen($setup_dump, 'w');
$server = ""; // IP of MySQL Server (if it's the same as the HTTP/FTP server, write "localhost").
$username1 = ""; // Full-privilege MySQL account username.
$username2 = ""; // Low-privilege MySQL account username. If there's only one MySQL account,
$password1 = ""; // Full-privilege MySQL account password. leave username2 & password2 blank.
$password2 = ""; // Low-privilege MySQL account password.
$database = ""; // MySQL database name.
if (!($username2))
{
fwrite($Handle1, "<?php\r\nfunction dblogin() {\r\n\$dbh = mysqli_connect(\"$server\", \"$username1\", \"$password1\", \"$database\") or
die(mysqli_error(\$dbh));\r\nreturn \$dbh;\r\n}\r\n?>");
fwrite($Handle2, "<?php\r\nfunction dblogin_write() {\r\n\$dbh_write = mysqli_connect(\"$server\", \"$username1\", \"$password1\", \"$database\") or
die(mysqli_error(\$dbh_write));\r\nreturn \$dbh_write;\r\n}\r\n?>");
}
else
{
fwrite($Handle1, "<?php\r\nfunction dblogin() {\r\n\$dbh = mysqli_connect(\"$server\", \"$username1\", \"$password1\", \"$database\") or
die(mysqli_error(\$dbh));\r\nreturn \$dbh;\r\n}\r\n?>");
fwrite($Handle2, "<?php\r\nfunction dblogin_write() {\r\n\$dbh_write = mysqli_connect(\"$server\", \"$username2\", \"$password2\", \"$database\") or
die(mysqli_error(\$dbh_write));\r\nreturn \$dbh_write;\r\n}\r\n?>");
}
fclose($Handle1);
fclose($Handle2);
fwrite($Handle3, "CREATE TABLE IF NOT EXISTS `board` (\r\n`idx` int(11) NOT NULL auto_increment,\r\n`postedtime` datetime NOT NULL default
'0000-00-00 00:00:00',\r\n`lasttime` datetime NOT NULL default '0000-00-00 00:00:00',\r\n`author` int(11) NOT NULL default '0',\r\n`replyto` int(11)
NOT NULL default '0',\r\n`subject` varchar(255) collate utf8_unicode_ci default NULL,\r\n`message` text collate utf8_unicode_ci,\r\n`ip` varchar(15)
collate utf8_unicode_ci default NULL,\r\nKEY `idx` (`idx`),\r\nKEY `replyto` (`replyto`),\r\nKEY `author` (`author`)\r\n) ENGINE=MyISAMDEFAULT
CHARSET=utf8 COLLATE=utf8_unicode_ci ;\r\n\r\nCREATE TABLE IF NOT EXISTS `users` (\r\n`idx` int(11) NOT NULL auto_increment,\r\n`joined` datetime
NOT NULL default '0000-00-00 00:00:00',\r\n`uname` varchar(31) collate utf8_unicode_ci NOT NULL default '',\r\n`pass` varchar(31) collate
utf8_unicode_ci NOT NULL default '',\r\n`lastlogin` datetime NOT NULL default '0000-00-00 00:00:00',\r\n`prevlogin` datetime NOT NULL default
'0000-00-00 00:00:00',\r\n`logintoken` varchar(32) collate utf8_unicode_ci NOT NULL default '',\r\nKEY `idx` (`idx`)\r\n) ENGINE=MyISAMDEFAULT
CHARSET=utf8 COLLATE=utf8_unicode_ci ;\r\n");
fclose($Handle3);
exec("mysql -u $username2 -p $password2 $database < hcsforumsetup.sql");
while(is_file($setup_dump) == TRUE)
{
chmod($setup_dump, 0666);
unlink($setup_dump);
}
print "The forum has been successfully installed.";
}
?>
All you need to do is input your database's name, MySQL server URI & MySQL account credentials for both full- & low-privileged users. The script will automatically generate the dblogin.php & dblogin_write.php scripts to access the database, as well as automatically generate & the database's schema.
Copy the above code & save it as install.php; edit the code as required. Save hcs' forum source(either the copy at the bottom of this page, or the index.php file from my custom package) & upload both files onto your server. Lastly, use a web browser to visit install.php's URL & presto; the database will be prepared & the forum will be ready to go.
If anyone decides to use this, please let me know of any bugs.
hcs; I hope you like this addition to your forum's source code. ;)
edited 10:07 PM EDT August 12, 2011
- DSP to wav/mp3? by Dutchie at 8:36 PM EDT on August 13, 2011
- does it exist? a tool that converts/extracts DSP to wav/mp3 ?!?!
- nezplay++ foo_gep by CapComMDb at 6:27 PM EDT on August 14, 2011
- Virtual Boy Custom Emulator? by CapComMDb at 12:38 AM EDT on August 16, 2011
- Looks like ugetab had a VB emulator modification for music playback, but the links are broken now. Anyone have a copy of this I can try?
EDIT: Search came up with something related:
http://www.myspace.com/wearevirtualboy
Chiptunes inspired by the Virtual Boy?!
edited 12:45 AM EDT August 16, 2011
- Radiant Historia now on tracker! by logan28469 at 7:09 PM EDT on August 17, 2011
- I uploaded Radiant Historia to the DS section of the tracker. Credit on the rip goes to Knurek Hopefully this helps increase my ratio as it is my first activity on the tracker.
edited 7:12 PM EDT August 17, 2011
edited 7:16 PM EDT August 17, 2011
- Disappearing from Tracker? by logan28469 at 7:09 PM EDT on August 17, 2011
- Why are there 2 different versions of Link's Crossbow Training?
Link's Crossbow Training (2007)(Nintendo)[WII][PCM - Sequenced][AST] and Link's Crossbow Training (2007)(Nintendo)[WII][Nintendo DSP - PCM][AST - BNS]
I don't know which one's better or what the differences are because I can't find the files. Only one is on the tracker, and I can't download anything yet because my ratio will drop to 0 as I've not succeeded at seeding anything yet. Also, I can't find Super Mario Galaxy 2 even on the tracker. It seems as if the files originally were, though. Why did they just disappear?
edited 2:51 AM EDT August 18, 2011
Previous Page | Next Page
Go to Page 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
Search this thread
Show all threads
Reply to this thread:
HCS Forum Index
Halley's Comet Software
forum source