Created
September 28, 2014 00:21
-
-
Save suitougreentea/b1394d789e8acc8c31d6 to your computer and use it in GitHub Desktop.
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
@echo Start processing | |
mkdir 1pass | |
mkdir processed | |
cd orig | |
for %%A in (*.wav) do sox %%A "../1pass/%%A" trim 0 -0.05 silence 1 0.1 0.5%% -1 0.1 0.5%% | |
cd .. | |
cd 1pass | |
for %%A in (*.wav) do sox %%A "../processed/%%A" fade 0.001 0 0.03 pad 0 0.1 | |
cd .. | |
rd /S /Q 1pass | |
@echo Processing finished | |
@pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment