Skip to content

Instantly share code, notes, and snippets.

@toshinarin
Created July 28, 2020 06:26
Show Gist options
  • Save toshinarin/ae90940e18ac776358f71184df6e00ae to your computer and use it in GitHub Desktop.
Save toshinarin/ae90940e18ac776358f71184df6e00ae to your computer and use it in GitHub Desktop.
Convert flac to alac
find . -type f -name "*.flac" | while read f; do ffmpeg -i "$f" -vsync 0 -c:v png -c:a alac "${f%.flac}.m4a"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment