Skip to content

Instantly share code, notes, and snippets.

@danpozmanter
Created July 19, 2018 12:17
Show Gist options
  • Save danpozmanter/58accce1e23d03c8675708172f7b0b74 to your computer and use it in GitHub Desktop.
Save danpozmanter/58accce1e23d03c8675708172f7b0b74 to your computer and use it in GitHub Desktop.
Simple mono to stereo bash script
#!/bin/bash
for filename in STE*.wav; do
echo "Remixing $filename..."
sox "$filename" "remixed_$filename" remix 1 1
done
echo "Done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment