Skip to content

Instantly share code, notes, and snippets.

@asaph
Created March 18, 2021 19:47
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 asaph/39f6112981d285607f3071397e7bc1f8 to your computer and use it in GitHub Desktop.
Save asaph/39f6112981d285607f3071397e7bc1f8 to your computer and use it in GitHub Desktop.
Convert Flac files to 96 kHz Apple Lossless
#!/bin/sh
for f in *.flac; do ffmpeg -i "$f" -acodec alac -ar 96000 "${f%.flac}.m4a"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment