HT2729 How do i covert my mp4 download to mp3 files

I have just downloaded severaal tracks from iTunes, but not sure if you can select different formats? Anyway I downloaded mp4 tracks but wwant to burn a CD for my car so need to convert to mp3.  Anyway to do this without purchasing software??
Thanks

Clare,
You can use iTunes to convert the file to MP3: 
iTunes: How to convert a song to a different file format
For future reference, rather than buying songs in the wrong format and converting them, you will find it easier to buy songs in MP3 in the first place, at an online retailer such as Amazon MP3. 

Similar Messages

  • My iTunes is no longer working.  I uninstalled and reinstalled but the program won't open and run.  I was trying to download an mp3 file last evening and I think something has been deleted that I need to open the iTunes.  How do i figure out what is gone

    I uninstalled and reinstalled but the program still won't open.  I was trying to download an mp3 file last evening.  Instead the site tried to install a new audio player.  I did not want it so uninstalled it immediately.  I think in that process something was deleted that I need for iTunes but I do not know what.  How do i figure out what is gone and recover it?
    I did try a system restore - but that was not a fix either.

    I was trying to download an mp3 file last evening.  Instead the site tried to install a new audio player.
    Ackk ... that behavior is consistent with the play_mp3.exe trojan:
    http://en.wikipedia.org/wiki/Play_mp3.exe
    Try downloading and installing the free version of Malwarebytes AntiMalware. Update your MBAM definitions and then run a full scan of the PC. (Takes about 2 hour on my Lenovo.)
    http://www.malwarebytes.org/mbam.php
    Does the scan find any infections? If so, please paste the contents of the log file for the scan in a reply here so we can have a look.

  • How do I stop adobe updates downloading as Simulink files in Matlab in order to update the program?

    How do I stop adobe updates downloading as Simulink files in Matlab in order to update the program?

    Hi Jess ,
    Please launch Acrobat>Navigate to Edit>Preferences>Updater>Check mark the option"Do not download or install updates automatically" and uncheck rest of the options or you may choose whichever suits your requirement.
    Regards
    Sukrit Dhingra

  • When I click to download a mp3 file, it just runs it, won't download it

    when I go to any site that offers me a chance to download a mp3 file, firefox just opens a new window and runs the audio.

    refer to this article for getting mp3s to download
    * [[Set how Firefox handles different types of files]]

  • How do I add to "properties" of an MP3 file in Windows so iPod will accept?

    I posted a problem yesterday, which I was clueless about. Today I know what the problem is, but don't know how to fix it.
    I have 30 MP3 files in a playlist, all from an identical album. I can play every file on my computer through iTunes with no problems. HOWEVER.... my iPod only "recognises" 23 of the 30 files and won't accept the remaining 7.
    I have updated the "info" part of the tags, made it a compilation etc. THat didn't work. THe problem is the the amount of detail in the "properties" section of each file. The 23 that the iPod will accept have many details in the properties section ... eg. artist, title, duration, audio etc etc .. the 7 that will not migrate across only have two details - "type" and "size"...
    SOOO my question is: How do I add to the "properties" of the MP3 files in Windows so the iPod will accept them?
    Would really appreciate some help here, its drivin me nutz!!

    Hi,
    As it didn't work in iTunes, I'm not sure completing the id3 fields for your 7 files through another app will correct the problem. But in any case, one program I use to edit id3 tags is ID3-TagIT. It's freeware.
    http://www.id3-tagit.de/
    Good luck.

  • How do I export a song at an mp3 file? And how do i get it to play in stere

    How do I export a song at an mp3 file? And how do i get it to play in stereo mode?

    Go to the "Bounce Dialog Window".
    See pg. 205 of the LE 7 Reference Manual.

  • How to authenticate a JWS Client download of jar files on a web server

    Here is a history of how i tried to implement the auth system:
    The resources(jar files) cannot be downloaded by any HTTP client from the server without some authentication method.
    As JWS is not reliable when using cookies (only 1.5 supports them, but with problems when in JNLP file i specify j2se version=older that 1.5) , i implemented another mecanism that works like this:
    1. 1.The template JNLP looks like this
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp codebase="http://10.3.0.62/" href="mapped/#JWS_CODE#___#PLATFORM#___app2.2.jnlp">
        <information>
           bla bla
        </information>
        <security>
            <all-permissions/>
        </security>
        <resources>
            <j2se version="1.4"/>
            <jar href="http://10.3.0.62/mapped/gui.jar?jwsid=#JWS_CODE#" version="2.2"/>
            <jar href="http://10.3.0.62/mapped/data.jar?jwsid=#JWS_CODE#" version="2.2"/>
            <jar href="http://10.3.0.62/mapped/log4j.jar?jwsid=#JWS_CODE#"/>
        </resources>
        <application-desc main-class="com.bet.blues.gui.Application">
            <argument>-host</argument>
            <argument>ursus</argument>
            <argument>-port</argument>
            <argument>17771</argument>
        </application-desc>
    </jnlp>2. All resources found in /mapped/ directory are mapped to JWSServlet
    3. The users login to a site , clik on link , /mapped/app2.2.jnlp , the servlet checks if the session is active , gets the PLATFORM form browser request header , gets the JWSCODE for the logged user, replaces this in the template, and returns it to the client
    4.Now after the 1st download the JNLP file is opened by JWS Client , that checks for latest version , requesting the JNLP file again
    like this:
    GET http://10.3.0.62/mapped/f12ks21092___windows___app2.2.jnlp5.Now the servlet sees the the request has a JNLP file name with an ID and PLATFORM, and serves the JNLP as before
    6.The JWS Client will request for JAR Files
    GET http://10.3.0.62/mapped/gui.jar?jwscode=f12ks21092?version-id=2.2Note: that i have forced JWSID parameter in the URL, that's why the query string contains 2 "?"
    - forcing this is because the mapped/*.jar is redirected JnlpDownloadServlet that supports versions , diffs - i cannot use 'version' to put there the jswid param(e.g .../mapped/gui.jar version="fk12ks21092_2.2" because the JnlpDownloadServlet will not find this version , and if JWS Servlet will redirect to JnlpDownloadServlet with correct version param in request, the JWS Client will raise an exception because version responded is not right(JNLPDownloadServlet marks in response HTTP header the version of the jar so JWS CLient will chek it)
    JWS Client expects version 'fk12ks21092_ver2.2'; to correct this i should modify the JnlpDownloadServlet and i shouldnt
    THE PROBLEM :
    on older versions than 1.5 JWS Client raises an exception because it wants to create a temp file named
    " gui.jar?jwscode=f12ks21092" because it contains "?"
    Only with 1.5 that seems to parse the jar name until it meets "?" char :(
    Thats why i wanted to send an error to the client to upgrade to Java Web Start 1.5
    Now, maybe u have a solution to this problem...
    All i want is a solution to let JWS Client download jars only if the user is authenticated by some mecanism....and also support the versioning system.
    Also:
    Note that the jar names must preserve on the client JWS Cache dir ( i cannot use the same method to pass the JWSCODE when requesting the JARS as when requesting the JNLP).

    You need to look into JAAS

  • How to make automatic download for mp3 files [80 gb of mp3 files stored in GoDaddy]

    I'm building this site --> Matthew
    I want my visitors to download the mp3 simply by clicking the "down" blue icon. But here's the challenge, I can't do "Link to File" cause I have a lot mp3 files [80 gb total]. I believe Muse can't carry those in one file. I already stored those in my GoDaddy account.
    Right click "Save Links as.." is not an option.
    Hopefully there's another way to do it.
    Thanks!
    Debs

    Hello,
    Please look at the link below:
    Force a File to Download Instead of Showing Up in the Browser « Tips and Tricks HQ Forum
    There is a section with heading that has 3 advises under heading "How to force a file download for all my files". you can use option 1 or 3.
    Regards
    Vivek

  • How do I make Firefox automatically download and install files?

    When I download an exe file from the internet, it goes over to the download window. I can see it downloading but I always have to right click and and select open to get it to install. How do I get it to always install automatically? There is never any option called "Download this type of file all the time".

    I've been trying to figure this out for days.

  • How......to Edit MP3 file tag inf

    Is there any way to edit the "tag information" or file properties?(ie. artist, track no., album) for an mp3 file before transferring to my Zen Xtra? I often download files or convert cassettes to wav/mp3s and can't figure out how to edit the artist, track no., album info before transferring to the Zen. I've tried right clicks & edits from Creative Media Source and can't find a way to edit this info. Thanks for any help.

    TGR95 wrote:
    Is there any way to edit the "tag information" or file properties?(ie. artist, track no., album) for an mp3 file before transferring to my Zen Xtra? I often download files or convert cassettes to wav/mp3s and can't figure out how to edit the artist, track no., album info before transferring to the Zen. I've tried right clicks & edits from Creative Media Source and can't find a way to edit this info. Thanks for any help.
    In the older versions of MediaSource, you have to import the songs into the PC Music Library and then edit the track information from PC Music Library. In the latest MediaSource v3.30.2?(which you can download from the Web update), you can edit the track information in both MediaSource's My Computer and PC Music Library. It is highly recommended that you download and install the latest MediaSOurce and its various plugins.

  • What is the sequence to download an mp3 file from a website?

    When I visit most websites (with IE on my Galaxy IIIS), I can download mp3 files by selecting the word "download" or an icon. With Firefox, sometimes it downloads and sometimes it plays. How do I guarantee-download.

    This will be in the long tap menu in Firefox 21. This will be released in about 10 weeks. https://bugzilla.mozilla.org/show_bug.cgi?id=791654
    Right now Firefox 21 is in the Aurora channel http://www.mozilla.org/en-US/mobile/aurora/

  • Download a MP3 file

    How do I put a link on a page the will allow my viewers to download an mp3 audio file that I have on my website? I inserted a text box saying click here to download - and linked it to the mp3 file. When sent to my browser and I clicked on the link it start playing and did not allow me to download the file to my computer.

    Whether an mp3 downloads or plays is a setting in the viewer's browser, the easiest way to "force" a download is to zip the file.

  • I cannot download MP3 files, whenever i click the link to download the MP3 files opens in firefox itself with no seprate dialogue box to download...it opens in a black screen and i am unable to download it

    i generally download songs from free sites like songs.pk, emp3world.com.........i am able to download songs from same sites in other browser like opera just by clicking on link to download, but in firefox a black screen appears and media is played online without getting downloaded.........plz help

    i have a php site. i am able to download mp3 files on localhost. after uploading on hosting server, i am able to download on IE, chrome. but mozilla gives a garbage file. instead of music file. I disabled vlc plugin or windows plugin and checked, still not working. Please help. In code i have given header('Content-Type: application/force-download)

  • How do I update/refresh track information for mp3 files already on my the comput

    I recently started using MediaSource after buying a Zen Touch and noticed that one (possibly more, I haven't screened all the?files I've burned) of the CD directories doesn't show the track information in MediaSource. I don't know why, when I go to the file directly on my computer all the information is there. I thought correcting the problem would be a simple matter of identifying the tracks without information and getting Gracenote to tag them, but I can't find any way to do this, and I've spent a lot of time looking.
    In searching this forum I've found other users with similar problems but no solution. To keep this simple, I will ask the question in the most direct manner I can:?How do I get track information for mp3 files already on my computer?Please note that I'm not asking how to get track information for CD's I'm burning, these are files that have been on my computers for years. Can somebody please help? I'm quite frustrated that what I thought would be an easy to apply feature of MediaSource is proving so difficult.

    Go to Settings>Store>Apple ID. Make sure that your current ID is set in there.
    You can also try logging out of FaceTime - Settings>FaceTime>Apple ID. Tap that ID and sign out. Sign in with the correct ID.

  • How to delete the uncommon sounds in 2 mp3 files

    Hi
    Is it possible to do this with 2 mp3 files?
    http://funkyimg.com/u2/438/320/Untitled-1.png
    I want to leave the common sounds intact
    and delete the sounds that are different :|
    for example
    2 songs with the same melody but different lyrics
    Sorry for my english
    And any help would be apreciated

    Yes...but it's difficult, and you probably won't get a clean result - it'll have all sorts of digital mung - doubly so for mp3 files, where information is thrown away for the sake of compression during encoding. I assume you have 2 versions of the same famous song, remixed by different artists? Here's how:
    load the two songs, which we'll call VersionA and VersionB.
    Go into multitrack view and line them up on adjacent tracks. The start and end should match perfectly if the music is really the same.
    Select both tracks. Menu: Edit|bounce to new track. This will give you something that sounds like the two mixed together, ie both sets of lyrics in 1 track with the background music louder than before. Call it VersionC.
    Highlight on VersionB and go into Edit mode.
    Menu: Effects|Invert.The waveform will appear to flip upside down.
    Back to multitrack. Select VersionA and VersionB. Menu: Edit|Bounce to new track. This will sound like the lyrics from both tracks minus most of the music. Call the result VersionD.
    Repeat steps 4 & 5, but on VersionD.
    Back to multitrack. Select VersionC and VersionD, then Menu: Edit|Bounce to new track. This will cancel out most of the lyrics but leave most of the music.
    Unfortunately, it won't sound that great, and you'll probably still hear the lyrics with a sort of echo quality. There is nothing you can do about this. One thing to try, though, is to search the net for a version of the song with no music at all. For example, search 'Remix_artist The_Famous_Song acapella'.
    If you're lucky, you might find a file of just the vocals for one of the remixes (an 'acapella' is a song with just vocals and no music, a lot of artists leak them). If you do find it, then start a new multitrack project, load the remix you already have, and then take the acapella track and move it around until it matches the vocals in the remix. You might need to cut it into several pieces if the timing is not the same, eg the first verse matches perfectly but then the chorus is out of sync. You will know it is right when you play back the song and it sounds perfect except that the lyrics are twice as loud (because you have an extra copy of just the vocal). If the acapella is a mono file, leave it panned to center.
    Once you are in this situation, apply steps 4/5/6 to the vocal track - select the vocal, invert it in edit mode, return to multitrack then mix both together. Mixing the original with the inverted vocal will cancel out the vocal without affecting the background too much.

Maybe you are looking for