forked from sox_ng/sox_ng
This is the hard fork, allowing old sox and sox_ng to coexist on the same system. Any distro wishing to switch to sox_ng just needs to make symlinks from the old file names to the new. This also removes the Debian-specific files rather than trying to update them, as Debian uses its own version of them.
14 lines
523 B
Batchfile
14 lines
523 B
Batchfile
rem Example of how to do batch processing with SoX on MS-Windows.
|
|
rem
|
|
rem Place this file in the same folder as sox.exe (& rename it as appropriate).
|
|
rem You can then drag and drop a selection of files onto the batch file (or
|
|
rem onto a `short-cut' to it).
|
|
rem
|
|
rem In this example, the converted files end up in a folder called `converted',
|
|
rem but this, of course, can be changed, as can the parameters to the sox
|
|
rem command.
|
|
|
|
cd %~dp0
|
|
mkdir converted
|
|
FOR %%A IN (%*) DO sox_ng %%A "converted/%%~nxA" rate -v 44100
|
|
pause
|