Skip to content

Instantly share code, notes, and snippets.

@hz37
Created January 17, 2020 22:16
Show Gist options
  • Save hz37/224921e323350edebb4a28323a8054ac to your computer and use it in GitHub Desktop.
Save hz37/224921e323350edebb4a28323a8054ac to your computer and use it in GitHub Desktop.
mp3 to audio cd in MacOS
#!/bin/bash
for f in *.mp3
do
echo $f
afconvert --data LEI16@44100 --channels 2 "$f" "$f.wav"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment