Converting MP3s to Play on a Nintendo DSi

bash$ for file in *.mp3; do ffmpeg -i “$file” -acodec libfaac -ab 128k “${file/.mp3/.m4a}”; done