Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - PayotCraft

Pages: [1]
1
Misc Audio / Re: FFV Steam GBA Music Mod
« on: 2021-03-26 10:15:49 »
First of all I am not fluent at speaking English so bear with me...

Every snd0_##.dat and snd1_#.dat file, there's always a header that determines what time the loop will start and end and its length. This header usually starts with the string "mtxs" followed by 12 bytes.

This is the header I made for my custom snd0_2.dat:
6D 74 78 73  DD FB 33 00  EC D6 05 00  DD FB 33 00

1. 6D 74 78 73
Converting the first four bytes of the header into a string will result to "mtxs".

2. DD FB 33 00
The second group of four bytes determines the length of a music file in samples, in little endian order. This means that this sound file has 3,406,813 samples in length.

3. EC D6 05 00
The third group of four bytes determines the starting length of a loop in samples, again in little endian order. This means that this sound file starts looping at 382,700 samples.
(If the sound file doesn't have a starting loop it should be set to 0.)

4. DD FB 33 00
The last group of four bytes determines the ending length of a loop in samples, again in little endian order. Usually this is the same as the second group of four bytes. This means that this sound file ends the loop at 3,406,813 samples.
(If the sound file doesn't have an ending loop it should be set to the length of the sound file in samples.)

To convert seconds to samples, multiply the length of a sound file with the sample rate of a sound file. Example, if the sound file has a length of 32 seconds and the sample rate is 44100 Hz, then the sample length of this sound file is 1,411,200 samples.

And btw ogg file format really works. Hope this helps.

2
Misc Audio / Re: [FF5 Steam] FFV Steam GBA Music Mod
« on: 2020-12-17 13:55:11 »
Deleted

3
Misc Audio / Re: [FF5 Steam] FFV Steam GBA Music Mod
« on: 2020-12-13 15:50:04 »
Deleted

4
Misc Audio / FFV Steam GBA Music Mod
« on: 2020-12-12 10:37:31 »
This mod replaces FFV Steam Music with FFVA GBA Music.

Download: https://drive.google.com/file/d/1g-2Hpw61XUZ-jp5xQNhNlh-KlDkz8y4H/view?usp=sharing

Version History:
v2.0 (2020-12-17)
- Converted all audio tracks to OGG format (320 Kbps).
- Fixed some audio tracks produce a popping/clicking sound while looping.

v1.1 (2020-12-13)
- Re-resampled all audio tracks with Linear Interpolation.
- Fixed some audio tracks produce a popping/clicking sound while looping.

v1.0 (2020-12-12)
- First release.

Pages: [1]