Skip to content

Instantly share code, notes, and snippets.

@sks147
Last active December 14, 2019 04:06
Show Gist options
  • Save sks147/69dbc132aa420cd1b15474fb7462f61c to your computer and use it in GitHub Desktop.
Save sks147/69dbc132aa420cd1b15474fb7462f61c to your computer and use it in GitHub Desktop.
Convert aiff to mp3
ffmpeg -i myinput.aif -f mp3 -acodec libmp3lame -ab 320000 -ar 44100 myoutput.mp3
ffmpeg -i myinput.m4a -f mp3 -acodec libmp3lame -ab 320000 -ar 44100 myoutput.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment