Skip to content

Instantly share code, notes, and snippets.

@willvincent
Created August 16, 2023 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willvincent/738f99bec391b2e4a565ad56d46be846 to your computer and use it in GitHub Desktop.
Save willvincent/738f99bec391b2e4a565ad56d46be846 to your computer and use it in GitHub Desktop.
#!/bin/bash
mkdir converted
for i in *.mp3
do
sox "$i" -e u-law -r 8000 -D -c 1 "converted/$(basename "$i" .mp3).wav"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment