Converting mp4 to mp3

Help - I'm no techie! I simply wanted to convert mp4 files to mp3, which wouldn't work in itunes, because they are 'protected' files. A friend suggested Audacity, which I downloaded. I opened a file in Audacity, went to export as mp3, and got the message that "Audacity does not export mp3 files directly, but instead uses LAME, an mp3 exporting library available separately. would you like to locate LameLib now?" I clicked yes, but couldn't find anything in finder. At a loss, I went back to sourceforge and clikced to download LAME, hoping it would automatically sort everything. Nothing appeared to happen. It didn't seem to download, and I couldn't find any trace of it on computer.
Any help with this much appreciated - I just want to convert the files so I can put em on an mp3 CD! Seems like it should be incredibly simple to solve, but I am lost.

Wait a minute! There is an answer to your (and my) problem in the thread just below yours.
http://discussions.apple.com/thread.jspa?threadID=1240701&tstart=0

Similar Messages

  • How to convert mp4 to mp3 in itunes?

    Hi Can anyone help to convert mp4 audio files to mp3 for my car stereo? i have the latest itunes on windows. i only have a option to create new version to AAC.

    To convert mp4 to mp3, you can also use the third party tool like audio converter which can extract audio file from video to hlep you.

  • How To convert mp4 to mp3 using itunes 11.1.3.8 for windows

    How To convert mp4 to mp3 using itunes 11.1.3.8 for windows

    pgyan wrote:
    How To convert mp4 to mp3 using itunes 11.1.3.8 for windows
    The normal situation would be wanting to convert .m4a (AAC or Apple Lossless) to .mp3 as these are both music file formats. The extension .mp4 is normally for a video file and iTunes itself will only convert music files from one format to another.
    For details on how to convert between music formats see http://support.apple.com/kb/ht1550
    If you want to convert the audio track of an .mp4 video to a .mp3 file then you are going to need to use a different utility.

  • How to convert MP4 to MP3 for export

    I want to convert an MP4 file in my iTunes library to MP3 for export via email. I know how to convert a CD on import by the preferences settings. And I know I can burn an MP3 CD. I just want to take a simgle MP4 file in my library, and convert it to MP3 in order to share with someone who can't read MP4.

    Ah so that's how it works.
    I understand now. Thanks.
    ~iBook G4 1.07GHz (Kaiya), with extra 256MB RAM ~and a red Apple logo~(Mac OS X 10.3.9)~ LaCie 160GB external hard drive~ ~3G 15GB iPod (Nakai)~ ~GiveStarsto users who earn them.~

  • Convert mp4 to mp3

    Hi, I was told that I posted on the wrong message board... so maybe I can get some help hear.. my husband has a ipod and I just go a mp3 player, But all the music in iTunes are mp4, so I can't convert the music over to my mp3. With out burning a cd first, BUT It told me to convert selection too, then choose a folder for the songs you want to convert. Then it saids if you purchased songs from the music store you can't....Well that's a lot of help.... Is there a web site to conver songs over too. That you dont have to pay for... Then I can convert all my songs over to and then add them to my mp3 player.... With out loseing anything...I did'nt know it would be this hard to do...I have a SanDisk mp3 (512) If that would help any. I did try there web sit, but had know luck. And still waiting for the same answer.. So if you have a mp3 player and it worked for you please let me know, Thanks, champs 97

    Open iTunes prefs -> Advanced -> Importing. Set to MP3, WAV, AIFF, AAC or Apple Lossless (whatever you want to convert TO.)
    Next select the song you want to convert, go to menu Advanced -> Convert to (whatever you set in the prefs).
    Set it back to AAC when done.

  • Converting mp4 to mp3 for burning to CD

    I can only burn an Mp3 CD if the songs are already in an Mp3 format. The problem is that my play list is all in Mp4 format. How can I convert my whole play list to Mp3's so I can make a CD? If this is possible please give step by step instructions if you can....
    Thank you.

    If you want to make an mp3 CD (to put a lot of songs on one CD, as opposed to a 'regular' CD), then you have to convert your AAC files to mp3 format first, then burn as mp3 CD.
    To convert your AAC files, if they are not protected you can simply change your import preferences to mp3 and then right-click on one or more songs and select "Convert to mp3...". The downside is that iTunes will create duplicates (the original AAC and mp3), and you'll lose some fidelity in transcoding like this.
    If your AAC files are protected, then we're not allowed to help you get around the DRM on these boards.
    {edited for TOU compliance}

  • I cant add mp4 to my Imovie Help to convert mp4 to mp3 ot update imovie

    I am having a big head ache trying to add an music song to my IMOVIE
    I have an older song on there that was an mp3 but all of teh new songs on my I tunes are locked in to mp4
    I want to add these songs to the slide show for my Fiancee
    Thanks
    Kazoo

    You can convert .m4p using iTunes.
    Make a playlist of files and burn to "audio CD". Use the new .aiff file in your iMovie Project.

  • Need to convert mp4 to mp3

    to load onto a kindle. What is the best way to do this? If possible i'd like to have two copies. One mp4 and one mp3. Thx

    Zevoneer wrote:
     Itunes will let you convert songs in your iTunes library to another format. When you convert a song in iTunes it will be converted to the format that you have set to import your CDs in. Converting creates a second copy of the song in the format you have chosen which gives you the opportunity to either keep or delete the original. If you are using iTunes 8 go to Edit>Preferences>General and click on Import Settings, change your option to MP3 for example. Go back to your library and highlight the songs you want to convert and go to the Advanced menu at the top of your iTunes window and choose "Create MP3 version": iTunes: How to convert a song to a different file format
    One exception to this are standard 128kbps AAC copy protected songs purchased from the iTunes Music Store which can't be directly converted due to the DRM (Digital Rights Management) copy protection. However you can burn these to an Audio CD which will work like any regular CD.
    Hello Zevoneer! Thanks for your contribution. May I ask how one can 'Set QT Player as standard program for WMA files'?
    Regards and have a great day.

  • Simple Script to Convert mp4 to mp3

    #! /bin/bash
    track=`echo "$@"`
    music='/home/lnk/Music/'
    video='/home/lnk/Videos/'
    ffmpeg -i "$video$track".mp4 -acodec libmp3lame -ab 160k -ar 44100 -ac 2 "$music$track".mp3
    Save the above code using your favorite text editor to 'convert.sh' or whatever you want.
    Simply change the video variable from '/home/lnk/Music' to whatever folder you want the final conversion to end up.
    Change the video variable from '/home/lnk/Videos/' to whatever folder you have your videos located.
    Run
    chmod +x convert.sh
    Make sure you have 'lame' and 'ffmpeg' installed. Both of these can be found with pacman and installed.
    pacman -S lame
    pacman -S ffmpeg
    When you're ready to do the conversions simple traverse in the terminal to the folder you have your script located and once there type
    ./convert.sh "filename without extension"
    And you're all done. ;)
    Hope this helps a few beginners create something useful.

    The "@" means "all arguments given to the script read separately". So all filenames are read, and if you have given the filename as one argument, so spaces escaped like autocomplete would do or *.mkv, then that stays. So "$@" is what you want
    Now we make a loop where we handle each file after another, everytime we call it "i". So the line starting with ffmpeg is done for each file, where file = i.
    ffmpeg -i "$i" : this is where we give ffmpeg the input file
    "$target${i%*.mp4}".mp3 is where we point to the target folder and target filename. We don't want the output file to be filename.mp4.mp3, so we tell it to use the filename without the ".mp4" part at the end. That's what %*.mp4 does. Check here: http://www.tldp.org/LDP/abs/html/string … ation.html
    Last edited by VCoolio (2012-03-27 16:18:19)

  • Convert mp4 to mp3 and replace to keep playlists

    Hi,
    Problem is I want to convert my downloaded m4p files to mp3 wile still keeping my playlists. Most of the solutions duplicate the files and if you have used any of the m4p's in a playlist the new converted mp3's don't reference the m4p's so if you delete the old m4p files it brakes all your playlists.
    Is there any way to convert and replace m4p's with mp3's to keep all the playlists intact in iTunes?
    Probably not but worth a ask.
    Thanks,

    Created my own solution, round the houses but works.
    1.Convert you M4P's in itunes with Advanced->Convert to
    2.Then eport you playlists
    3.Open in each playlist in text edit and do a find and replace on .m4p to .mp3
    4. Then reimport you play lists.
    5. Then you can if you like delete the old m4p's
    Not ideal but does the trick.

  • How do you convert MP4 to MP3 in Garage Band?

    I downloaded an MP4 and loaded it into GarageBand, but after I added a new track to accompany the MP4 track, GB will not record on the new track...?

    , but after I added a new track to accompany the MP4 track, GB will not record on the new track...?
    Thi should work. At least it does in my GB version '11. What is your version?
    Just to be sure - some basic things to check :
    Is your new track a software instrument track or a real instrument track? It the type of the track does not match the type of instrument you are using (software or real) you will not be able to record.
    Is the track ensabled for recording and the correct track selected?
    Regards
    Léonie

  • Converting Mp4 to MP3 in iTunes 9

    I cannot figure out how to do this in iTunes 9. The "import" button on the advance tab or preferences is no longer there so I cannot select the MP3 option for importing either. Did it get moved?

    symphonix wrote:
    Did it get moved?
    Yes. It's now found in the iTunes Preferences "General" tab. Click the "Import Settings..." button.

  • ITunes stops working when converting mp4 to mp3

    Hoping to avoid re-installing. Rebooted, to no avail.

    Ok, so I installed the new version of iTunes also to no avail.

  • Converting mp4 files to mp3

    I'm trying to send a song which has been downloaded from i-tunes to my phone via bluetooth, but my phone doesn't have an mp4 player on it, and ive tried converting it but even when I thought I did, i still cant play it on my phone, therefore does anyone know if it is possible to convert mp4 into mp3 files or any other advise gratefully welcomed.
    Thanks ben

    If you've downloaded it from the iTunes Store, then you won't be able to play the file on your phone because iTunes Store purchased tracks are protected against copying/conversion to MP3.
    If the file is ripped from your own CD you can convert it using the guide here:
    http://askbobrankin.com/convertitunes_to_mp3format.html
    Otherwise, you will have to burn an audio CD of the track(s), then re-rip them in MP3 format for your phone.

  • How to convert Mp4's to Mp3's on v.9?

    Hi
    How do I convert mp4s to mp3s?
    Thanks, Pat

    Go to iTunes>Preferences>General and choose the Import Settings button. Pick the format you want to convert your files to (MP3 for example). in your iTunes library or playlist highlight the song or songs you want to convert and go to the Advanced menu on the top bar of iTunes and choose, again for example "Create MP3 version": How to convert a song to a different file format format

Maybe you are looking for