Skip to content

Instantly share code, notes, and snippets.

@fatboab
Last active October 6, 2021 13:35
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 fatboab/cc567af97270e8faeb85 to your computer and use it in GitHub Desktop.
Save fatboab/cc567af97270e8faeb85 to your computer and use it in GitHub Desktop.
Convert audio to FLAC
for f in *.m4a; do avconv -i "$f" -acodec flac "${f%.m4a}.flac"; done
for f in *.wav; do ffmpeg -i "$f" -af aformat=s32:96000 "${f%.wav}.flac"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment