for i in *.aac; do ffmpeg -i $i -aq 2 `basename $i aac`mp3 ; done
A couple of things to note: the filename extension for aac is case-sensitive in bash. And this only works for the non-free version of ffmpeg that has AAC and MP3 enabled.
for i in *.aac; do ffmpeg -i $i -aq 2 `basename $i aac`mp3 ; done
A couple of things to note: the filename extension for aac is case-sensitive in bash. And this only works for the non-free version of ffmpeg that has AAC and MP3 enabled.
No comments:
Post a Comment