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
What's on my computer, how it got there and how to use it
{ Daily Archives }
bash$ for file in *.mp3; do ffmpeg -i “$file” -acodec libfaac -ab 128k “${file/.mp3/.m4a}”; done