Skip to content

Instantly share code, notes, and snippets.

@everm1nd
Created October 12, 2017 13:16
Show Gist options
  • Save everm1nd/48a7b4a9b8c3da9fcc06827639da2d5f to your computer and use it in GitHub Desktop.
Save everm1nd/48a7b4a9b8c3da9fcc06827639da2d5f to your computer and use it in GitHub Desktop.
# 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