Change file types in iTunes

Is it possible to change the file types of music files already downloaded in iTunes (aac to mp3)

Hi Wall!
Welcome to the Discussions!
You have a mini-nightmare going on, but nothing that can't be sorted out.
First, if you have any iTunes Music Store purchased music in your iTunes Library, please insure that you have authorized your computer so that you can play it and can load it on the iPod to play it there. These songs show as "Protected AAC audio files" in your iTunes window under the "Kind" heading.
If you loaded/imported the CDs as AACs, they should play in that format and should load into your iPod in that format. I suspect that they won't play or load onto the iPod because iTunes can't find them on your hard drive.
If I were you, I would highlight my Library in the iTunes window, select "Show Duplicates" from the menubar, then sort the files based on "kind" by clicking on the "kind" header on the iTunes window. (If "kind" doesn't show as one of your headers, choose View Options from the menubar and check it so it does appear in the iTunes window.) After sorting by "kind", you should have your duplicate song files grouped together as AACs and MPEG Audio Files (MP3s). I would highlight all of the MP3s that were duplicated by the conversion you did and delete them, thus undoing the conversion and making things a bit simpler to work with. When You're done with this, change the option back to "Show All Songs".
Now, you're left with the AACs that are not linked with iTunes... Unless you deleted them from your drive, they're still there, but iTunes doesn't know where they are. Go to the Advanced Pane of your iTunes Preferences, click on the "General" tab, then check the boxes to "Keep iTunes Music folder organized" and "Copy files to iTunes Music folder when adding to Library". Also note the location listed for your iTunes Music folder while you're there. Click "OK'" and these changes will take effect.
Now, from the iTunes menubar, find and choose "Consolidate Library", which will scour your hard drive for music files and add them to the iTunes Music Folder. Your songs should then be present in the iTunes window. Check to insure that they are, and that they play before proceeding... You may now have duplicates again: the original AACs that weren't linked, as well as the files that were added through the "consolidation" that you just did. If so, you can once again choose to show duplicates in your Library, then sort them based on Date Added, which will separate the old song titles from the new ones. Once you sort them this way, you can then highlight all the old duplicates and delete them. You should be left with a working Library. (Be careful to not mistakenly delete any "Protected AAC audio files" if you have music from the iTunes Music Store.)
There may be an easier way to do this, but I don't know of one without messing around with the files inside the iTunes folder, which I'm very hesitant to do or to recommend to someone else...
Wall, just know that the files you imported from those 600 or so CDs should be somewhere on your drive, even though iTunes has "lost" a link to them. If you keep them in your iTunes folder, you'll know where to look for and find them. The preference settings I referenced a couple of paragraphs above should help to keep them organized there.
You might want to check out the AAC loading/playing before doing any of the above. First, check/change your "General" iTunes preferences as I previously described. Then insure your "Importing" preference is set to AAC. Create a new playlist, load one of the CDs you previously imported, and drag it's icon to the new playlist to add it to the Music folder and Library. Attempt to play the songs from that playlist. They should play just fine. If you want, you can then sort the Library by "Date Added" in the iTunes window and delete the songs from the Library from the CD you just added. If this works for you, then proceed with the consolidation and cleanup as above.
Gary
1GH DP G4 Quicksilver 2002, 400MH B&W G3, Mac SE30   Mac OS X (10.4.2)  

Similar Messages

  • Where is "save as" or how to change file type in Preview in Lion?

    Where is "save as" or how to change file type in Preview in Lion? I used to use Preview to change quickly change a lot of PNGs to either JPEGs or PDFs but with the introduction of versions auto save etc there no "save as" in the File menu. Any suggestions how to get this functionality back or how to get around it within OS X (no Photoshop etc)?

    Just wasted 15 minutes looking for that.  What's wrong with Save As?

  • Changing file type association through java

    hello all,
    here i had a problem like , we know when we try to open .csv file by default it wll open in excel , because the csv file type was associated with excel this we can see in mycomputer->tools->folder options->file types and here we even have the possiblity of changing the association.
    anyway, my question is that is there any way of changing this association like csv to oepn in wordpad through java program
    with regards
    satya

    i created a like wordCsv.reg
    REGEDIT 4
    [HKEY_CLASSES_ROOT\.csv]
    "Default"=string:Wordpad.Document.1
    when i click on this file i could see a message that the entry wassucessfully entried but i cannot see the entry
    is my approach was correct in adding entry in regedit programatically,
    please any more ideas
    http://jniwrapper.com/pages/winpack/downloads
    here in this link i saw some samples regarding changing file types association
    , dont now will it works
    since this is for win32
    i found a program FileTypeAssociation dont know will it works
    * Copyright (c) 2002-2005 TeamDev Ltd. All rights reserved.
    * Use is subject to license terms.
    * The complete licence text can be found at
    * http://www.jniwrapper.com/pages/winpack/license
    package com.jniwrapper.win32.shell;
    import com.jniwrapper.Function;
    import com.jniwrapper.LongInt;
    import com.jniwrapper.Pointer;
    import com.jniwrapper.UInt;
    import com.jniwrapper.win32.registry.RegistryKey;
    import com.jniwrapper.win32.registry.RegistryKeyType;
    import com.jniwrapper.win32.registry.RegistryKeyValues;
    import com.jniwrapper.win32.registry.RegistryException;
    import java.io.File;
    * This class provides functionality for creating file type associations.
    * @author Vladimir Kondrashchenko
    public class FileTypeAssociation
    private static final String FUNCTION_SHCHANGENOTIFY = "SHChangeNotify";
    private static final long SHCNE_ASSOCCHANGED = 0x08000000L;
    private static final long SHCNF_IDLIST = 0x0000;
    private String _extention;
    * Creates a class instance for associating files of the specified type.
    * @param extention specifies the file type by its extention.
    public FileTypeAssociation(String extention)
    if (extention.startsWith("."))
    _extention = extention;
    else
    _extention = "." + extention;
    * Creates a file type association.
    * @param executable an associated file will be passed as a parameter of this executable file.
    * @param progID the programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(File executable, String progID)
    if (!executable.isFile())
    throw new IllegalArgumentException("File not found.");
    String commandLine = "\"" + executable.getAbsolutePath() + "\" \"%1\"";
    createAssociation(commandLine, progID);
    * Creates a file type association.
    * @param commandLine specifies an executable command.
    * @param progID the executable programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(String commandLine, String progID)
    RegistryKey registryKey = RegistryKey.CLASSES_ROOT.createSubKey(progID+"\\shell\\open\\command", true);
    RegistryKeyValues values = registryKey.values();
    if (commandLine != null)
    values.put("", commandLine);
    else
    values.put("", "");
    registryKey.close();
    registryKey = RegistryKey.CLASSES_ROOT.createSubKey(getExtention(), true);
    values = registryKey.values();
    values.put("", progID, RegistryKeyType.SZ);
    registryKey.close();
    changeNotify();
    * Removes all associations for the file extention.
    public void removeAssociation()
    try
    RegistryKey.CLASSES_ROOT.deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.CURRENT_USER.openSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts").
    deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.LOCAL_MACHINE.openSubKey("SOFTWARE\\Classes").deleteSubKey(getExtention());
    catch (RegistryException e)
    changeNotify();
    * Returns the default executable command for the file extention.
    * @return the default executable command for the file extention.
    public String getDefaultCommand()
    RegistryKey key = RegistryKey.CLASSES_ROOT.openSubKey(getProgID());
    key = key.openSubKey("\\shell\\open\\command");
    RegistryKeyValues values = key.values();
    return values.get("").toString();
    * Returns the program identified of the default executable program.
    * @return the program identified of the default executable program.
    public String getProgID()
    RegistryKeyValues values = RegistryKey.CLASSES_ROOT.openSubKey(getExtention()).values();
    return values.get("").toString();
    * Returns <code>true</code> if a file type association for the specified extention is registered.
    * @return <code>true</code> if a file type association for the specified extention is registered.
    public boolean isRegistered()
    try
    RegistryKey.CLASSES_ROOT.openSubKey(getExtention());
    catch (RegistryException e)
    return false;
    return true;
    * Returns the file extention.
    * @return the file extention.
    public String getExtention()
    return _extention;
    private void changeNotify()
    Function function = Shell32.getInstance().getFunction(FUNCTION_SHCHANGENOTIFY.toString());
    function.invoke(null,
    new LongInt(SHCNE_ASSOCCHANGED),
    new UInt(SHCNF_IDLIST),
    new Pointer(null, true),
    new Pointer(null, true));

  • Change file type to pdf

    How do I change file type to pdf with windows 8 without paying? I was able to do this with windows 7 without paying.

    Actually, I guess it's possible you were using paid-for Adobe software and didn't realise it.
    Can you remember the steps you followed to make a PDF in your old system?

  • Changing file type when saving doesn't work

    How can I fix the problem where, if I change file type when saving, eg from tiff to jpg, the 'jpg' suffix is not appended in the save window? It remains as tiff. This has only started happening recently.

    I have a G5 iSight running OSX 10.4.11 with all the latest upgrades. The problem is about a week old.
    Yesterday I did a clean install of everything (not because of this problem) which I'm sure would have cleared the problem. But I was playing around with importing all my old PS and InDesign settings via copying the old preference files (and others), and the tiff/jpeg problem has reappeared. Seems to me like one of the files I copied, contains the problem. I suspect the only way out of this is to reload PS. But I was hoping it might be as simple as deleting a certain preference file.

  • Changing file type when syncing to iPhone?

    Hello, is there a way to change the music file type when syncing my computer with my iPhone? I would like to store music on my compter as Apple Lossless, but then sync it as AAC to the iPhone. Under the iTunes 10.5.3 Advanced tab, I see that I can select songs and convert them inside of iTunes, but then it duplicates the song in my Library in the new format. I'm looking for a way to do this on the fly during the sync, if that is possible. Thanks.

    I see that setting now in iTunes when I plug in my iPhone, thanks. That appears to be the only bitrate option available, I was hoping to keep them at a higher quality for the iPhone, but not as high as Apple Lossless. Guess I'll just do the conversion in iTunes at 256 kbps AAC, sync those to the phone, and then delete them out of the library on the computer. It would be a cool upgrade to iTunes to have more bitrate options available.

  • Unable to change file type to audio book; previously able to.

    I have some audio book files (mp3) that I have added to my iTunes library and am trying to change the type to "audio book" by doing the standard right click and get info and changing to audio book etc.  However, iTunes is only actually changing them to audio books some of the time; the books that are and are not converting are both the same file type (mp3). Whenever it does not change it over, iTunes literally does not do anything (as in it does not try to change it and then fail). I am unsure what the issue is, can anyone help? Thanks!
    Windows 8.1   64 bit
    iTunes 11.3.1.2

    Hi,
    There is no preference but it turns out you can manually edit one of the preferences.xml files to force PL/SQL types to use the SQL worksheet editor. For SQL Developer 3.2.20.09.87 that file is system3.2.20.09.87\o.sqldeveloper.11.2.0.9.87\preferences.xml and will be located (on Windows 7, for example) in directory C:\Users\<userid>\AppData\Roaming\SQL Developer
    No guarantee this will work in future versions of the product, but for now you can add the following two xml blocks...
    For example, for .pls, add to <extensionToContentTypeMap ...>
                <Item>
                   <Key>.pls</Key>
                   <Value>TEXT</Value>
                </Item>
    and <userExtensionList>
                <Item>
                   <docClassName>oracle.ide.db.model.SqlNode</docClassName>
                   <userExtensions class="java.util.ArrayList">
                      <Item class="oracle.ide.config.DocumentExtensions$ExtInfo">
                         <extension>.pls</extension>
                         <locked>false</locked>
                      </Item>
                   </userExtensions>
                </Item> I researched this a while back after reading through some forum thread where someone claimed the PL/SQL file extensions got opened in the SQL editor in his environment, but without stating any specific release information. Possibly it worked for him then due to different product behavior (whether intentional or a bug), or perhaps even due to the technique described above.
    Regards,
    Gary
    SQL Developer Team

  • JFileChooser: changing file type resets current directory

    I create a JFileChooser with multiple file types and set the current directory. It comes up with the first file type and the current directory. If I select another file type, the files shown are not in the current directory, which I set -- they are files in the application default directory. Is there a way to keep my current directory, while changing the file type? Or is this a feature?

    Are you talking about your own CDs imported to iTunes or are you talking about songs purchased from the iTunes Music Store (iTMS)? If the latter, the iTMS, you do not get any choice in the format downloaded. You get protected AAC files and that is all.
    If you want to change how you import files, go to the iTunes preferences for importing and choose the format you want to use from now on.
    Patrick

  • Changing "file type" in Link Information Window (CS3)

    Hola,
    I am having a problem in Indesign (CS3), and I was wondering if anyone here might be able to help.
    I'm a student updating an older .INDD file for a 47 page book. The pages were all updated as .AI files, but for some reason
    3 of the pages in our InDesign document were assigned a .PDF "file type" in the Link Information window.  When I try and "Relink" to the updated .AI files,
    the program won't link to the .AI file. It will properly re-link to a .PDF version of the file.
    Is there a way to reset that "file type" in the Links Window from .PDF to .AI?
    Ultimately I can use .PDF versions for this, but I'd prefer to have them all .AI files.
    That would be cleaner and easier for the next students down the road who are going
    to inheriet this project.  It seems like this should be an easy thing to do, but I can't figure it out...
    Thank you very much for any information you can provide.  
    ¡Muchas gracias!
    Javier

    Hola,
    Thank you for the quick reply!  I now suspect that I didn't correctly identify the problem.
    In the Links Panel for 44 of the 47 pages, they read pathname/*.AI, so no problem there (although the file type is also .PDF in the link window for those 44 pages that can link to the .AI).
    For three of the pages though, when I try and link them to pathname/*.AI, I get an error message in the document that indicates that "this is an Adobe Ilustrator file that was saved without PDF content".  When I relink those three to pathname/*.pdf, they work.
    So I'm thinking at this point that the problem isn't Indesign, but with the original .AI files that I'm trying to link to. I also suspect that my original idea to change the "file type" in the Links Panel to ".AI" is incorrect, since it's a .PDF file type for all of the 47 pages in this document!
    ¡Muchas gracias!
    Javier

  • Change file type classification? mkv as "Movie"

    In short, I would like to make mkv files show up under the class of "Movie" in smart folders and such. I'm assuming that buried in some setting or file there is a list of extensions I can add "mkv" to. I would have thought this was a common question but so far forum trawling has got me nowhere. Can anyone shed some light? The reason, if you care to read is below, but it doesn't have that much bearing on the question.
    I have a sizeable DVD collection, I also have a new job that puts me in hotels 5 weeks out of 6 for training. I don't want to carry them around as they'll get damaged and broken. Last week I left my MacPro chobbling away at encodes and now my entire DVD collection resides on a NAS as well as my shelves. I've created a simple automator finder service that will copy the selected files to a "Films" folder within the Movies folder that I've removed from the time machine backup so as not to waste space. This is set to only show up if the selected items are "Movies". As a consequence, it doens't appear for mkv's.
    I know I can just alter the service to be there permanantly which is what I'll do for now, but it's not a very elegant solution.

    I was able to change the extension in Windows, which then changed the file type. I'm still curious as to how to make the change directly on my MAC.

  • How to change file type associations in SAP ERP 6.0?

    Hello,
    I'd like to figure out how to change the application associated with a given file type in SAP. I want to open a .DOC file, but I am using OpenOffice instead of MS Word. I have .DOC file type already associated with OpenOffice in Windows XP, but SAP doesn't seem to recognize that association. I am using SAP ERP 6.0. Any ideas?
    Mike

    Hi,
    MS Word is mandatory. You will not be able to work using Open Office in SAP.
    Regards,
    Rajesh Kumar

  • Changing file type API to open with Adobe Reader 9.2

    In windows XP, if I go to C:\Program Files\Adobe\Reader 9.0\Reader\plug_ins, it shows the API extension to be File Type AcroExch.plugin
    This seems to be because Adobe Acrobat 5.0 is installed first on the PC, then Adobe Reader 9.2 is installed on the PC.
    On a clean PC, if I install Adobe Reader 9.2, then the file type becomes API file.
    How do I change the file type from AcroExch.plugin to API file?

    I want to do this because I have a 3rd party plugin which will not work otherwise.
    The 3rd party plugin is FileOpen Installer.
    http://plugin.fileopen.com
    If Adobe Reader 9.2 is installed on the PC first, then the folder c:\program files\adobe\reader 9.0\reader\plug_ins looks like the attached JPG Adobe Reader 9 Plugin working.jpg
    FileOpen Plugin works with the above situation.
    Note that it is a 3rd party supplier which sends files which require the 3rd party Plugin FileOpen and a test document is here
    http://fileopen.bl.uk:8008/FileOpenFreeLink-1.0/entryPage.do;jsessionid=FADC8178CCD0236480 199338A79483E7
    If Adobe Acrobat 5.0 is installed on the PC first and the Adobe Reader 9.2, then the folder c:\program files\adobe\reader 9.0\reader\plug_ins looks like the attached Adobe Reader 9 Plugin Problem.jpg and the test file sent by the British Library above will not open.
    You get the following when you try to open the British Library test file (see British Library2.jpg)
    FileOpen is installed as a 3rd Party Plugin in Adobe Reader 9.2 and I can see this under Help About 3rd Party Plugins FileOpen Installer.
    (Note Adobe Acrobat 5 runs via a network install and is not installed onto the workstation so I can't remove it via Add/Remove Programs).
    So I am guessing the problem is to do with the API file type being different when Adobe Acrobat 5 is installed first?
    Thanks,
    Paul

  • Some mp3 downloads are coming up as adobe files and wont let me change file type

    I am trying to download mp3 files or music files and they are coming up as adobe files when the window pops up and it has no option to change the file type and i have clicked the other options and they dont change anything either (e.g. open, save etc) If you then go ahead and try to download it has finished withina few seconds and you have no music file at the end of it.

    .EXE files are not very easy to open on Macs with Mac OS X 10.4.3 or earlier. They typically require an emulation program to run Windows.
    See my FAQ*:
    http://www.macmaps.com/macosxnative.html#WINTEL
    Newer Macs are more capable of running Windows, and can do so natively. You can attempt to find a 10.3.9 compatible alternative compatible application as well. Audio and video files don't play very well on emulation, but work fine in Windows native compatible Macs.
    - * Links to my pages may give me compensation.

  • Can't change file type when saving EA3

    Hi,
    When I open test.txt and attempt to save it as test.sql I get an error:
    "Cannot convert file /Users/henrycollingridge/test.txt to file /Users/henrycollingridge/test.sql"
    I have tried changing the file type to sql, text and all files with the same result.
    I am running EA3 on OSX 10.5.
    Cheers,
    Henry

    Said so too in 30EA3 -> 1.1: Can't run/debug procedure from file , but no answer yet.
    Hope they fix these before release,
    K.

  • Applescript to change file type using folder action

    Just found out my Adobe Acrobat is saving PDFs with the filetype "FDP" and creator "ORAC" which is obviously the reverse of what they should be.
    There doesn't appear to be a fix for this, and for me it's a problem because when I copy these PDFs onto our Xinet WebNative asset management server the files aren't recognised as PDFs, so don't display a preview in the web page.
    So, I wanted to use a folder action that will set the Creator and Type to the PDFs whenever they are put into a folder on the server.
    Unfurtunately, although I can get this to work when using a script in the form of an application (so I drop PDFs onto it, I cannot get it to work as a folder action. It doesn't set the creator and type even though the same commands in a application script do work.
    *This is the code to my script which works fine as an application:*
    ====================
    property FileType : ""
    property CreatorType : ""
    on open theFiles
    tell application "Finder"
    activate
    set FileType to "PDF "
    set CreatorType to "CARO"
    repeat with eachFile in theFiles
    set the file type of eachFile to FileType
    set the creator type of eachFile to CreatorType
    end repeat
    end tell
    end open
    ===================
    *and this is what I'm trying to use for a folder action:*
    ===================
    on adding folder items to my_folder after receiving the_files
    set pdfs to {"pdf"}
    repeat with i from 1 to number of items in the_files
    tell application "Finder"
    set this_file to (item i of the_files)
    set the file_path to the quoted form of the POSIX path of this_file
    --set the file_path2 to the quoted form of file_path --can combine if file_path isn't needed
    set this_fileType to name extension of (info for this_file)
    end tell
    if this_fileType is in pdfs then
    tell application "Finder"
    activate
    set FileType to "PDF "
    set CreatorType to "CARO"
    end tell
    end if
    end repeat
    end adding folder items to
    ==================
    I know it processes the file but it doesn't actually change the creator type.
    *If only Apple would fix this bug in the first place!*

    Your folder action script isn't using the same commands, and doesn't do anything about setting file types or creator codes at all. Something like this should do the trick:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on adding folder items to my_folder after receiving the_files
    set pdfs to {"pdf"}
    repeat with each_file in the_files
    set this_fileType to name extension of (info for each_file)
    if this_fileType is in pdfs then
    tell application "Finder"
    set file type of each_file to "PDF "
    set creator type of each_file to "CARO"
    end tell
    end if
    end repeat
    end adding folder items to
    </pre>
    ... and by the way, Apple doesn't have anything to do with the file types, creator codes, or other application specific settings that an Adobe application sets for itself.

Maybe you are looking for

  • Not able to capture Data in VL02N through BADI (LE_SHP_DELIVERY_PROC)

    Hello Experts!!! Iu2019m trying to capture all the FINALL DATA whenever there is any change made to Delievery Document (VL02N). To accomplish this Iu2019m using BADI LE_SHP_DELIVERY_PROC. Now the problem is even though this BADI triggers when I choos

  • Questions on the ODBC database type

    We use a cloud based application, ServiceNow for Service managerment.  They provide an odbc 3.5 compliant driver which works outside of Data Services fine. I tried adding a Datastore for this choosing the 'ODBC' database type.  When I click [OK], it

  • Cannot get encoding correct using ABAP XML

    I need to transform data using ABAP transforms and the DOM. I'm expecting to get a string like this out of the DOM tree when I call IF_IXML_NODE->GET_VALUE( ): Jukan testityö Instead I get: Jukan testityA¶ (This is finnish). The inbound XML is UTF-8

  • Problem with Management Console for Netweaver Development Studio

    I installed the  Netweaver Development Studio and all works fine Normally the MMC shows SAP Systems and a J2E instance below it which is used to start the services But when I shutdown my machine and restart it again the J2E item below the SAP Systems

  • IPad limitations?  Is it really a Mac?

    Hi, I just got an iPad last week, and am trying to learn to like it. So far, it's limitations seem to outweigh it's strengths. First, it doesn't really work like a Mac. There is no dock, no Finder, no 'drag and drop'. There is Mail, but it really doe