Skip to content

Instantly share code, notes, and snippets.

@edwardsharp
Created October 4, 2017 23:39
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 edwardsharp/11bd276936d5197100f5e0f566d23ea7 to your computer and use it in GitHub Desktop.
Save edwardsharp/11bd276936d5197100f5e0f566d23ea7 to your computer and use it in GitHub Desktop.
batchToMp3 bash batch avconv .aif to .mp3 converter script
for f in *.aif; do avconv -i "$f" -f mp3 -acodec libmp3lame -ab 192000 -ar 44100 "${f%}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment