[SOLVED] BWAV to WAV?

Ask questions on how to do this and that here.
Post Reply
thefiend1
Posts: 2
Joined: Wed Jun 21, 2023 7:40 pm

[SOLVED] BWAV to WAV?

Post 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
admin
Site Admin
Posts: 971
Joined: Wed Nov 17, 2010 12:56 pm

Re: BWAV to WAV?

Post by admin »

Could you please send one .bwav file to xrecode@gmail.com? You could use https://wetransfer.com/ if it's too big.
admin
Site Admin
Posts: 971
Joined: Wed Nov 17, 2010 12:56 pm

Re: BWAV to WAV?

Post 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.
thefiend1
Posts: 2
Joined: Wed Jun 21, 2023 7:40 pm

[SOLVED] Re: BWAV to WAV?

Post by thefiend1 »

Wow awesome thank you very much! This worked out perfectly :D
Post Reply