The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 795 - File: showthread.php PHP 7.4.33 (Linux)
File Line Function
/showthread.php 795 errorHandler->error





Post Reply 
 
Thread Rating:
  • 1 Votes - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sound effect replacements
06-12-2016, 07:51 PM
Post: #1
Sound effect replacements
The PSP has lots of ways to output sound, but one that games typically use for sound effects is an ADPCM VAG. It's not very high quality, but it's simple. It's sometimes used for music, and usually used for sound effects.

It would be fairly easy to "replace" these, if people are interested. Replacing other audio (largely ATRAC3/ATRAC3+, video, or rarely MP3) is possible but more tricky. A few games also use PCM directly, which is rare but could also be replaced this same way.

The most trivial replacement implementation would:

* Save PCM s16le samples with hash filenames, like texture replacements.
* Read back in the same format for the replaced audio.
* Require the same length and loop settings.
* Expect the same bitrate as the source (e.g. 22/mono or whatever.)

A more advanced replacement implementation could:

* Use a different length and have tune-able looping (this means some replacements could break games and would need to be tested.)
* Potentially load from or even write to an encoded source, e.g. mp3.
* Allow stereo (definitely some complexity...)
* Allow 44.1k in the case of 22k/etc.

Does "sound effect replacement" sound interesting to people? How much would it be used and just how much would the more advanced things be used?

Note: applying the same things (like stereo) to ATRAC3 would be much more complex. But it is doable for VAG, so that's the only one I'm asking about.

-[Unknown]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Sound effect replacements - [Unknown] - 06-12-2016 07:51 PM
RE: Sound effect replacements - Accel - 06-12-2016, 08:09 PM
RE: Sound effect replacements - YukiHerz - 06-12-2016, 09:05 PM
RE: Sound effect replacements - [Unknown] - 06-12-2016, 09:59 PM
RE: Sound effect replacements - LunaMoo - 06-13-2016, 11:23 AM
RE: Sound effect replacements - FinalBlast - 06-17-2016, 08:15 AM
RE: Sound effect replacements - Cordon - 07-23-2016, 06:16 PM
RE: Sound effect replacements - Trokinos - 08-28-2016, 06:10 PM
RE: Sound effect replacements - [Unknown] - 09-05-2016, 03:20 PM

Forum Jump: