Batch Convert MP4 to MP3

Can iTunes, QuickTime Player or any free software be used to convert a bunch of MP4's to MP3's? I have 184 video lectures I gave I want to turn into MP3's. So far QuickTime Player worked great, but that only converts one at a time and it is a very tedious and repetitive work.

MacBook Air

Posted on Aug 25, 2019 5:46 AM

Reply
Question marked as Top-ranking reply

Posted on Aug 25, 2019 11:53 AM

I combined what you helped with and the StackOverflow and came up with the solution below. I created a fold on the desktop, moved all the videos in that folder. I created the folder "outputs" within the folder with the videos. I option-dragged ffmpeg from the bin file to the folder with the videos (NOT in outputs). I wrote in terminal:


cd Desktop
cd "The name of the folder with the videos I wanted to convert"
for f in ./*.mp4; do ./ffmpeg -i "$f" -c:a libmp3lame "outputs/${./f%.mp4}.mp3"; done


This did it! Shout-out to you and our programmers out there, this piece of work was not pleasant. Or it is not for me.

21 replies

Aug 25, 2019 10:50 AM in response to Bitee

Two things.

  1. In order for ./ to work, you must be in the current directory where the ffmpeg binary is located. That Bash error message indicates that you are not.
    1. In the Finder, and in your Downloads folder, find the ffmpeg-4.2-macos64-static folder.
    2. In that folder is a bin folder containing the ffmpeg binary.
    3. Press the option key and drag (copy) the ffmpeg binary onto your Desktop (for now)
    4. Place a sample .mp4 video on your Desktop too.
    5. Run the command syntax that I have provided changing the input .mp4 and output .mp3 filenames to your circumstance.
  2. Once you are satisfied that the particular ffmpeg command sequence produces a satisfactory .mp3, then I will write you a script that will loop through all of your 186 .mp4 files and generate your .mp3.

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Batch Convert MP4 to MP3

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.