Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Created January 25, 2022 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ziadoz/d5ff381b64fb5efe8b63db0738bad994 to your computer and use it in GitHub Desktop.
Save ziadoz/d5ff381b64fb5efe8b63db0738bad994 to your computer and use it in GitHub Desktop.
FFMPEG: MP3 to M4A
#!/usr/bin/env bash
for file in *.mp3; do ffmpeg -i $file -c:a aac -vn ${file%.mp3}.m4a; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment