Convert m4a to mp3 with ffmpeg
$ ffmpeg -i foo.m4a -acodec libmp3lame -aq 2 bar.mp3
Or, for batch processing:
$ for foo in *.m4a; do ffmpeg -i "$foo" -acodec libmp3lame -aq 2 "${foo%.m4a}.mp3"; done
Written by Kenrick Turner
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Cli
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#