Skip to content

Instantly share code, notes, and snippets.

@rileyjshaw
Created July 26, 2022 14:17
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 rileyjshaw/719f4582f9e82b6a408231c0ff3a6584 to your computer and use it in GitHub Desktop.
Save rileyjshaw/719f4582f9e82b6a408231c0ff3a6584 to your computer and use it in GitHub Desktop.
Generate a series of MP3s on MacOS. Filenames are left-padded with 0s.
#!/bin/bash
for i in {001..100}; do
say ${i##+(0)} -o "$i.aiff"
lame -m m "$i.aiff" "$i.mp3"
rm "$i.aiff"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment