Created
January 15, 2013 12:25
-
-
Save lukehorvat/4538250 to your computer and use it in GitHub Desktop.
Batch file for fixing WAVs exported from Sibelius. Uses SoX to process files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd %~dp0 | |
mkdir converted | |
FOR %%A IN (%*) DO ( | |
sox %%A "converted/%%~nxA" reverse trim 4.3 reverse trim 0.3 gain -n -1 | |
lame -V7 converted/%%~nxA | |
) | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment