Page 1 of 1

[SOLVED] BWAV to WAV?

Posted: Wed Jun 21, 2023 7:43 pm
by thefiend1
Hello,

Not sure if this is the right place to ask - but I have a ton of BWAV files that I need to convert to WAV... but it doesnt look like xrecode supports bwav?

Here's more info
https://gota7.github.io/Citric-Composer ... ryWav.html

Re: BWAV to WAV?

Posted: Thu Jun 22, 2023 6:20 am
by admin
Could you please send one .bwav file to xrecode@gmail.com? You could use https://wetransfer.com/ if it's too big.

Re: BWAV to WAV?

Posted: Fri Jun 23, 2023 8:38 am
by admin
There is already a ready made program to convert BWAV to WAV, but it only works from a command line.
Please go to https://s.neofetch.win/openrevolution/
Download brstm_converter-clang-amd64.exe
Copy brstm_converter-clang-amd64.exe to the folder, where your .bwav files are located
Create a file named convert.bat with the following content in the same folder

Code: Select all

@echo off
@for %%f in ("*.bwav") do (
    @brstm_converter-clang-amd64.exe "%%f" -o "%%~nf".wav
)
pause
Then double click on the convert.bat from the Windows Explorer and all .bwav files in that folder will be converted to .wav.

[SOLVED] Re: BWAV to WAV?

Posted: Fri Jun 23, 2023 5:52 pm
by thefiend1
Wow awesome thank you very much! This worked out perfectly :D