Create M4A to MP3 or WAV

I'm new to iTunes and need some assistance. I just purchased an album and it was downloaded to my computer in M4A format. I can not burn this to a disc as a MP3. How can I convert these files so I can burn to a disc?

If the album was iTunes Plus standard you can convert the songs in iTunes. 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 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.

Similar Messages

  • Converting iTunes (m4a) to mp3 or wav

    I have a fairly extensive iTunes library which I sync with my iPod Nano 2. My daughter has just been given an mp3 player for her birthday and I'm trying to find a simple way of exporting & converting tracks for her to either mp3 or WAV format without losing my m4a. Any ideas short of burning original to CD then re-importing under her account (where import of CD's is set to mp3)?
    I have managed to open an iTunes track as m4a within Quicktime and save as a wav file, but the file size went from 2.6 MB to 11.7 MB - not very practical.
    Cheers, Andy
    Message was edited by: Andy Faizey

    If the file is an .m4p then it is DRM protected and you can only burn is as an audio CD - you can figure out the rest.
    If the file is a .m4a - no DRM - then you should be able to convert it to an mp3 within iTunes. Change your iTunes import options prefs.
    MJ

  • HT201301 I'm trying to convert an m4a voice note to either mp3 or wav and can't seem to get a straight answer on how to do it without a lot of jargon. Would appreciate the help.

    I'm trying to convert an m4a voice note to either mp3 or wav and can't seem to get a straight answer on how to do it without a lot of jargon. Would appreciate the help.

    Yes it does.
    Audio formats supported: AAC (8 to 320 Kbps), Protected AAC (from iTunes Store), HE-AAC, MP3 (8 to 320 Kbps), MP3 VBR, Audible (formats 2, 3, 4, Audible Enhanced Audio, AAX, and AAX+), Apple Lossless, AIFF, and WAV
    http://www.apple.com/ipad/specs/

  • Re:  conversion to mp3 or .wav

    I am using Adobe Photoshop to create a slideshow with digital camera pix. It has option to browse and look for music to incorporate in the show in mp3 or .wav format. When I browse and go to my music/itunes/artist/album and open the album folder, I don't see any songs (it displays only files of type mp3 or wav-- there are no other options).
    I can only assume that however itunes works, it is not in a format of mp3 or .wav. Is this a correct assumption? What format does itunes use?
    If so, how do I convert itunes format to mp3 or wav? When I click on a desired song from my library in itunes and go to "advanced" at the top I see an option "convert to AAC". What is this?
    When I simply drag from itunes library onto desktop it creates a .m4a extension. Adobe Photoshop doesn't seem to recognize this either. Any thoughts?
    ipod 20GB   Windows 2000  
      Windows 2000  

    AAC is a newly developed codec by a conglomeration of several companies and is used with the MPEG4 ISO standards. It is not proprietary to Apple but it is not MP3 or WAV. See:
    http://www.apple.com/quicktime/technologies/aac/
    http://www.vialicensing.com/products/mpeg4aac/standard.html
    If you get the "convert to AAC" selection in the menu, then your importing settings are for AAC. Go to: Edit=>Preferences=>'Advanced/Importing' tab and change your setting to MP3.
    Then select the song you want to convert and iTunes will create a new MP3 file for you.
    Post back if you have more questions.

  • Python / Audio Conversion - I want to convert mp3 to wav

    Hi, Ive dabbled very little in actual coding, wrote one python app that these forums really helped me make, and Ive programmed in VBScript and SQL Server, but all academic, nothing for my own uses.  I need a program to convert mp3's to .wav's that can then be burned in 'Recorder' to burn the audio disc.  I know there are many scripts like this floating around, but I want to do my own, problem is, im lost.  I seem to have 2 main problems, getting the file names into a list or tuple,  and then actually running the commands to convert using a for loop using lame or mpg321.
    this bash script uses mpg321 and sox,
    #!/bin/bash
    # allmp3wav
    for i in *.mp3; do
    echo "$i"
    tgt=$(echo "$i" | sed -e "s/mp3/wav/")
    mpg123 -b 10000 -s -r 44100 "$i" | sox -t raw -r 44100 -s -w -c2 - /var/cdrom/"$tgt"
    done
    This works fine and I understand the code.  Its saying for every file that ends in .mp3, run these commands, which do the coding.  The only problem is, this doesnt work in python, since its not pythong   Can someone give me a little bit of help?  Dont give me the program, or give me to much info, links would be great.
    1 - Need to Get Directory
    2 - Loop through all the .mp3 files and add them to an array.
    3 - create a sub directory named "wav"
    mkdir ~/wav
    4 - copy all the mp3's to "wav"
    cp ARRAy to wav/
    5 - convert all .mp3's to wav
    6 - delete the copied mp3's from .wav directory
    for .mp3
    rm
    7 - tell me how many wavs were created.
    for .wav
    count + 1
    That is just a rough flow chart of what I need to do, and as you can see its pretty bare as of now.  Also, I imagine to run mpg321 or lame commands, I need some sort of lame or mpg321 module?  Ive read the python wiki for for loops and lists and tuples, but I need more info.  Thanks, Justin.

    Alright that helped alot, its almost working now, I am using Popen wrong still I assume, here is what I got.
    import os
    import subprocess
    here = os.getcwd()
    ctr = 0
    for file in os.listdir(here):
        name, ext = os.path.splitext(file)
        if ext == ".mp3":
                    p = subprocess.Popen("mpg123 -w " + name + ".wav " + name + ext , stdout=subprocess.PIPE, shell=True)
                    ctr = ctr + 1
    print ctr
    That executes, but gives this error,
    High Performance MPEG 1.0/2.0/2.5 Audio Player for Layers 1, 2 and 3
    version 1.4.3; written and copyright by Michael Hipp and others
    free software (LGPL/GPL) without any warranty but with best wishes
    [readers.c:893] error: Cannot file [Beginning: No such file or directory
    [mpg123.c:516] error: Cannot open [Beginning: File access error. (code 22)
    [readers.c:893] error: Cannot file of: No such file or directory
    [mpg123.c:516] error: Cannot open of: File access error. (code 22)
    [readers.c:893] error: Cannot file Whats About to Happen] HWY 74.wav 01 [Beginni
    ng of Whats: No such file or directory
    [mpg123.c:516] error: Cannot open Whats About to Happen] HWY 74.wav 01 [Beginnin
    g of Whats: File access error. (code 22)
    [readers.c:893] error: Cannot file About: No such file or directory
    [mpg123.c:516] error: Cannot open About: File access error. (code 22)
    [readers.c:893] error: Cannot file to: No such file or directory
    [mpg123.c:516] error: Cannot open to: File access error. (code 22)
    [readers.c:893] error: Cannot file Happen]: No such file or directory
    [mpg123.c:516] error: Cannot open Happen]: File access error. (code 22)
    [readers.c:893] error: Cannot file HWY: No such file or directory
    [mpg123.c:516] error: Cannot open HWY: File access error. (code 22)
    [readers.c:893] error: Cannot file 74.mp3: No such file or directory
    [mpg123.c:516] error: Cannot open 74.mp3: File access error. (code 22)
    2
    If i remove the subprocess popen, and just print name + ext and use the counter, it prints out both file name together, and how many mp3's it processed, 2.  So i know the program is doing what I want, im just converting wrong.  Thanks again.
    here is whats in the directory, there is more then mp3's, so I know it is filtering the files properly thanks to your splittext.
    justin ~/build/convert $  dir -ls
    total 12104
      20 -rw-r--r-- 1 justin justin   17138 2008-05-19 17:59 00\ -\ Wretch.txt
       4 -rw-r--r-- 1 justin justin      44 2008-06-01 18:20 01
    7588 -rw-r--r-- 1 justin justin 7768364 2008-05-19 17:59 01\ [Beginning\ of\ What's\ About\ to\ Happen]\ HWY\ 74.mp3
       4 -rw-r--r-- 1 justin justin      44 2008-06-01 18:20 02
    4484 -rw-r--r-- 1 justin justin 4588063 2008-05-19 17:59 02\ Love\ Has\ Passed\ Me\ By.mp3
       4 -rw-r--r-- 1 justin justin    1284 2008-06-01 18:20 convert.py
    justin ~/build/convert $
    Last edited by axion419 (2008-06-01 22:23:32)

  • Mp3 to wav converter

    i am looking for mp3 to wav converter Api (in j2me) how it can be done help needed plz it 's urgent !
    hoping for an early reply

    no way!
    you've got a java api for j2se: the javasound api but it can't be available in j2me. best thing to do is to use a soft (like cdex,...) to convert mp3 to wav or, if you have an available server (like tomcat), create a app that uses javasound api to convert your songs when you put them on the server (via an admin console)
    peace

  • Automator For Mp3 to WAV

    I was wondering if anyone out there familiar with Automator knew of a way to automate converting MP3s to WAVs. It would be nice to just cntl click on an MP3 and have the automator open qiucktime and convert the audio file to wave. I never use automator but it seems like something someone would have already figured out how to work. Thanks for any help

    no way!
    you've got a java api for j2se: the javasound api but it can't be available in j2me. best thing to do is to use a soft (like cdex,...) to convert mp3 to wav or, if you have an available server (like tomcat), create a app that uses javasound api to convert your songs when you put them on the server (via an admin console)
    peace

  • Converting .m4p to .mp3 or .wav?

    I have an iTunes problem someone might be able to help with? I have downloaded a .m4p music file in iTunes. I want to use it in photo editing software that only accepts .mp3, .wav and .wma file types, and didn't detect the m4p file in the folder it was in.
    Is there any way to get m4p files into mp3/wav/wma formats (without risking overrunning my computer with viruses, spyware etc)? I know there may be legal issues too but I’m not very clear on them so if anyone can inform me that would be helpful.
    These are the bright ideas I had so far that didn't work...
    I tried to convert .m4p to .mp3/wav in iTunes - copied the file onto a CD, imported it back into iTunes and tried to convert it to .wav in iTunes. But I still got a message saying protected files cannot be converted to other formats.
    I tried to download converting software to do this, eg
    http://www.allformp3.com/m4a-to-mp3.htm
    http://www.allmusicconverter.com/
    But when I tried to run the software, I kept getting a warning message from Internet Explorer, saying the file did not have a valid digital signature that verified its publisher and advising not to run it, so I didn't run it.
    I thought maybe I could open the file in another program and save it in an acceptable different format. I tried Windows Media Player 11, it wouldn't recognise .m4p, and wouldn't let me save in specific formats. I tried RealPlayer, it would open and play the file but wouldn't save it in another format.
    Any advice appreciated!!
    Thanks

    Tracks purchased from any legal download store carrying major-label content, including the iTunes Store, are copy-protected (with the exception of music on EMI's labels, much of which is also available in a higher-quality, nonprotected format) and so cannot be directly converted to any other format. You can, however, burn the tracks purchased from the iTunes Store out to an audio CD, at which point it will act just like any other normal audio CD.

  • Converting an MP3 to WAV -- How can I convert an MP3 to wav format, 16 bit

    How can I convert an MP3 to wav format, 16 bit, 44,1 khz? I like the program Switch which I know can convert MP3s, but how to I set it up for the specific settings that I need?

    Just import into a logic session. Then bounce at the specs you require. Logic or Waveburner, iTunes and even Quicktime I think can each do this easily.
    A question though. I am assuming you are converting an MP3 to 44.1/16 bit just so you can play the file in a consumer quality CD player?? IF so - that makes sense.
    But if you are doing this because you think it will improve the sound quality of your MP3, I will save you some time here. It won't improve the sound quality at all. It will just turn the MP3 into a larger audio file.
    44.1/16 bit resolution enables you to have a much better sounding file than MP3 formats, but not by going at it this way.
    No offense to you if you know all of this already. I am assuming that you may not know this - because if you did you would also likely know how to convert an audio file.
    Cheers
    Darrell

  • MP3 and WAV tagging Prog

    I have hundreds of albums ripped into my PC and I am trying to get all of my MP3's and WAVs tagged in the same uniform way. I want to see if any of you know of a program that I can download that will do what I am looking for. I want all of my songs to be named as follows:?0 Tom Sawyer02 Red Barchetta03 YYZ04 Limelight?As you can see I want the songs to simply have the song number and title and that is it. Over the years I have ripped CDs before I really thought of ripping them in a uniform way and now I am having to spend countless hours doing it manually. Before I spend countless more hours perhaps someone here knows of a great program that will take my songs and tag them this way. I need it to cover both MP3 and WAV if possible. Thanks!

    Try mp3 Tag Studio at www.magnusbrading.com

  • Files converted from m4a to mp3 are not displaying correctly in feed

    hi; i recently produced my first show in garageband (after using a bunch of other audio apps in the past), exported to an m4a file, and converted to mp3 in itunes, but it is not showing up as an audio file in my feed.
    the feed is http://feeds.feedburner.com/wellroundedradio and my blog posting on it is http://wellroundedmedia.blogspot.com
    is there something you need to do when converting from m4a to mp3 in itunes to make sure the settings are all correct so it will be enclosed as an audio file? i have tested other mp3 files in the feed and they are working fine.
    thx, charlie
    ==
    charles mcenerney
    host + producer
    well-rounded radio
    http://www.wellroundedradio.net
    iBook G4   Mac OS X (10.4.8)  

    greg-
    thanks. yes, i think that's what has been so tricky about this. i add a link to an mp3 in blogger, but feedburner doesn't add this particular show as an enclosure, so it's not updating in the feed. can't seem to find where the origin of the problem, though...is it blogger, feedburner, or the mp3 file or...?
    charlie

  • Obtain ID-tag from m4a, m4p, mp3, ... file bought on iTunes Music Store

    How can i obtain ID-tag (... and an unique ID?) from m4a, m4p, mp3 file bought on iTunes Music Store?
    I need to build C/C++ application to make this.
    Best regards.

    Burn them to an audio CD then re-import them. This strips off the restrictions and protections rendering them like any other CD music you import. And then you can store the CDRs away as a backup of your purchase.
    Patrick

  • Converting From Mp3 to Wav and also dividing a song.

    Is it possible to convert an mp3 to .wav and then split the entire song into 10-second wavs. If there is a way, please share. Thank you. I'm using Quicktime Pro

    Nathan, welcome to these discussions.
    Open the .mp3 file with QT Pro.
    Set the "in and out" (selection markers) to the ten seconds you wish to convert and use "Copy" from the Edit menu.
    Open a new QT Player window (Control-N) and then Control-V (paste).
    Choose "Export" (File menu) and then choose Sound to Wave.
    Repeat for all the conversion you want to make.

  • Convert mp3 to Wav?

    Hi, i'm looking for a software that would allow me to convert mp3 to wav files. I have to upload files but the source only accepts wav files and I can't get itunes to export to wav format so your help would be much appreciated.

    I've used EasyWMA to convert audio formats before, and it may be able to do what you want. There is a limited free trial available:
    http://www.easywma.com/
    You can also try searching versiontracker.com or macupdate.com with the file types to see if there is other conversion software available.

  • MP3 to WAV Codec in Processor

    Hi,
    I�m trying to add Codec to an processor because I want convert MP3 to WAV.
    When y obtain PlugInManager.getPlugInList (with type=4) only obtain com.ibm.media.codec.audio.ACMCodec.
    After make processor.realize(), I inspect the processor CodecChain (before I have added the ACMCodec when processor was in Configured state). But when I inspect the supportedOutputFormat and supportedInputFormat of ACMCodec, don�t find MP3 anywhere.
    What am I doing wrong?, Have I install any codec for ACM?, Are There any Plug-in for MP3 to WAV??
    thanks.
    Message was edited by:
    ivan1978

    Hi,
    I�m trying to add Codec to an processor because I want convert MP3 to WAV.
    When y obtain PlugInManager.getPlugInList (with type=4) only obtain com.ibm.media.codec.audio.ACMCodec.
    After make processor.realize(), I inspect the processor CodecChain (before I have added the ACMCodec when processor was in Configured state). But when I inspect the supportedOutputFormat and supportedInputFormat of ACMCodec, don�t find MP3 anywhere.
    What am I doing wrong?, Have I install any codec for ACM?, Are There any Plug-in for MP3 to WAV??
    thanks.
    Message was edited by:
    ivan1978

Maybe you are looking for

  • Payment Posting with Reference to Purchase Order

    Dear Experts, I've created a Purchase Order with reference to a purchase requisition. Now I want to post MIRO with reference to this Purchase Order Number to give payment to Vendor mentioned in Purchase order. But when I going to post miro amount not

  • Portal: Disable the SAP tool bar and enable a pop up in SAP IAC iview

    Hi Experts, My requirement:A user will open the ESS->Bank details iview (which uses the standard transaction PZ03) and would like to edit a record. So, he clicks on the change button and a screen to edit the record comes up. Here, he edits informatio

  • Pipe in Expansion does not expand BAS members for all KeyRanges

    Hi all, I created a simple report to input some figures (in this case currency translation rates). I would like to add the different figures per period (BAS members of selected time period) and would like to have the different input currencies separa

  • IMac 27inch built in SD slot not detecting

    Recently, I wanted to use my SD slot to upload pictures from my camera. It has been working fine before and now all of sudden it doesn't read the card at all once I put in the built in slot on the side. At first I thought it was the SD card but when

  • Can't change iTunes display language back to english

    After upgrading to iOS 5 on iPad 2 ITunes and Apps are in French. Have tried to correct settings, keyboard language, etc but still can't correct. Have same problem on IPhone. Any suggestions thks