Convert m4a to mp3 Using Ffmpeg on Windows (and Git Bash)
1 min read

Convert m4a to mp3 Using Ffmpeg on Windows (and Git Bash)

Convert m4a to mp3 Using Ffmpeg on Windows (and Git Bash)

Here's a simple command line to convert m4a files to MP3 on windows:

for i in *.m4a; do
  ./ffmpeg.exe -i "$i" "${i%.m4a}".mp3;
done

HTH,