Converting wav to acm

Soda_fr

It Wandered In From the Wastes
Hey guys,

At Mutants Rising we have hundreds of wav files to convert to acm format (mostly voice acting), and so far we've been using the snd2acm from Abel (TeamX). Problem is, for each file to convert, we need to rewrite the command line in the dos shell (well, I call the last line with the up arrow, but still, I have to change the name of each file).

So, our question is : is there a software that can batch convert wav to acm, that would help us greatly!
 
There might be a program, but then there always is quick scripting! :)

If you are on Windows Vista and above, you can run the following batch script:

Code:
forfiles /s /m *.wav /c "snd2acm -wav @relpath @fname.acm"

Just make sure all your wav files are in a single directory with the snd2acm program.

It works for me on Win 7.

What is in quotations above is the normal call to snd2acm but with a variable input/output name based on all the .wav files in that directory the command is being called from.
 
Back
Top