Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save suitougreentea/b1394d789e8acc8c31d6 to your computer and use it in GitHub Desktop.
Save suitougreentea/b1394d789e8acc8c31d6 to your computer and use it in GitHub Desktop.
@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