Skip to content

Instantly share code, notes, and snippets.

@alashstein
Forked from pftg/m4a-to-mpr.md
Created April 24, 2020 08:07
Show Gist options
  • Save alashstein/2b52abd0951ea12048d2bbcf112e7127 to your computer and use it in GitHub Desktop.
Save alashstein/2b52abd0951ea12048d2bbcf112e7127 to your computer and use it in GitHub Desktop.
Compress m4a with audio notes
ffmpeg -i tmp/audio-notes.m4a -acodec libmp3lame -aq 9 tmp/audio-notes.mp3
for file in *.m4a ; do ffmpeg -i $file -acodec libmp3lame -aq 9 ${file%.m4a}.mp3 ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment