Created
September 16, 2013 13:20
-
-
Save ryohey/6580601 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
| #!/bin/bash | |
| for in_file in $(ls -1 *.wav) | |
| do | |
| out_file="fade/${in_file}.wav" | |
| echo "Processing: \"$in_file\". Saving as \"$out_file\" ..." | |
| sox "$in_file" "$out_file" fade t 0 0 2 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment