Created
October 12, 2017 13:16
-
-
Save everm1nd/48a7b4a9b8c3da9fcc06827639da2d5f 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
# this will add some fades 10ms for fade-in and 100ms for fade-out. probably fade out is too extreme | |
for i in $(ls *.wav); do sox $i $i.ogg fade .01 -0 0.1; done | |
# this will normalize volume to -3 dB level | |
for i in $(ls *.wav); do sox $i $i.ogg norm -3; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment