Skip to content

Instantly share code, notes, and snippets.

@secretfader
Created November 11, 2010 20:16
Show Gist options
  • Save secretfader/673098 to your computer and use it in GitHub Desktop.
Save secretfader/673098 to your computer and use it in GitHub Desktop.
awesomely fast batch audio trimming with sox
for i in *aiff; do sox "$i" "./converted/${i}" trim 20 60 fade 1 60 2; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment