This is a simple tools to convert wav files FROM the game format and TO a game format.
Download
make Shortcut (not copy) of "Fable3_WAV_convert.bat" to:
%APPDATA%\Microsoft\Windows\SendTo
then Right Click -> SendTo -> select Shortcut
or drag-and-drop file(s) on "Fable3_WAV_convert.bat"
it will convert all WAV files in a directory
manual conversion
You need to cut starting 4 bytes
hexed.exe -r 0 4 "filename"
if starting 4 bytes were xwma, then you need to do decompression
xWMAEncode.exe input_filename output_filename
to convert back to a game format, you need to add 4 bytes to start of the file:
hexed.exe -i 0 1 77 61 76 00 "filename"
used
hexed
and xWMAEncode
[Updated on: Fri, 27 September 2013 03:28]
Report message to a moderator