Skip to content

Instantly share code, notes, and snippets.

@pftg
Last active April 24, 2020 08:07
Show Gist options
  • Save pftg/a06c3d18d5d53525c06dbe9832e2db40 to your computer and use it in GitHub Desktop.
Save pftg/a06c3d18d5d53525c06dbe9832e2db40 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