Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: A Quck MP4 toMP3 converter?  (Read 2546 times)

0 Members and 1 Guest are viewing this topic.

Geek-9pm

    Topic Starter

    Mastermind
  • Geek After Dark
  • Thanked: 1026
    • Gekk9pm bnlog
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 10
A Quck MP4 toMP3 converter?
« on: February 27, 2019, 12:56:37 PM »
Instead of searching Google, I thunk it would be easier to just ask.  ;D
I have a nice confection MP4 music clips. I wood like to put the audio on an iPod device. Either MP3 or WAV.  It should not hard to do. Right?
Does anybody know of a quick easy way to do this?  :)

Salmon Trout

  • Guest
Re: A Quck MP4 toMP3 converter?
« Reply #1 on: February 28, 2019, 09:34:47 AM »
ffmpeg

2x3i5x



    Expert
  • Thanked: 134
  • Computer: Specs
  • Experience: Familiar
  • OS: Windows 10
Re: A Quck MP4 toMP3 converter?
« Reply #2 on: February 28, 2019, 10:56:48 AM »
I like to use xmedia recode to convert between different filetypes. It's fast, free and just does its job.

Of all the various filetypes that it can support and convert into, mp3 is one of them.

Salmon Trout

  • Guest
Re: A Quck MP4 toMP3 converter?
« Reply #3 on: February 28, 2019, 11:29:02 AM »
To make an mp3 from every mp4 in a folder

This is at the prompt,

for %A in (*.mp4) do ffmpeg -i "%A" -b:a 192K -vn "%~nA.mp3"

In a batch script double up the % signs so % becomes %% like this...

for %%A in (*.mp4) do ffmpeg -i "%%A" -b:a 192K -vn "%%~nA.mp3"

Makes an mp3 with the same name as the mp4 so

Song Name.mp4 ---> Song Name.mp3

Where it says 192K that is the bitrate of the output mp3, could be 64K, 128K, 320K etc





Geek-9pm

    Topic Starter

    Mastermind
  • Geek After Dark
  • Thanked: 1026
    • Gekk9pm bnlog
  • Certifications: List
  • Computer: Specs
  • Experience: Expert
  • OS: Windows 10
Re: A Quck MP4 toMP3 converter?
« Reply #4 on: February 28, 2019, 01:22:46 PM »
Thank you. I will use it right away.   :)