dbry/adpcm-xq

Any way to batch convert?

Closed this issue · 2 comments

I have multiple wav files that it would take a very long time to copy each file name in and convert them manually. Is there a command or shortcut to convert multiple?

dbry commented

There's no direct way to do that in the command-line program.

However, depending on whether you're using Linux/MacOS or Windows there are simple ways to do that using shell or batch commands. For example, in Windows, I just made this process all the .wav files in a directory and put the results in the subdirectory "out" (which I created first):

for %i in (*.wav) do adpcm-xq "%i" "out\%i"

Hope this helps!

Thank you!