ITunes won't read ID3 tags that Windows sees

I recently switched my library over from a Mac laptop to a PC desktop. I have about 70 GB of perfectly organized music accumulated over years and years.
In the process, after I loaded some songs into iTunes (using the Keep My iTunes Folder Organized and all that stuff), I noticed that about 10 GB of music were without titles, artists, or album info, and just displayed the name of the MP3 file (so like instead of displaying 15 Step by Radiohead from In Rainbows, Track 1 it displayed "01 15 Step" in the Title column only).
The problem is that when I navigate to these songs in Windows Explorer, not only do I see all of the correct ID3 information, I see the extras like Album Art have loaded perfectly as well. I can play these songs in Windows Media Player and the ID3 info is perfect.
Does anyone know why iTunes won't read these ID3 tags or how to get iTunes to read them?

I am also having the same problem with about 200 of my MP3s. The tag info shows up perfectly using QuickLook on Leopard, but in iTunes I can't see any of the info. I have tried converting the ID3 tag version, revesing the unicode....nothing.
Have you had any luck?

Similar Messages

  • ITunes won't read ID3 tags

    So long story short, I lost my iTunes library and had to re-import all of my songs. Problem is, iTunes isn't reading the ID3 tags correctly, and most of my music has "unknown" under artist, album, etc. Normally, it wouldn't be a big deal to just go through my library and update the information for the tracks manually. But I have a LOT of music, and it would take forever to do so for my entire library. I use iTunes whenever I import CDs or purchase music, so the ID3 tags were all originally created by iTunes itself, which doesn't make any sense. All of the ID3 information (track names, artist, album, etc.) is showing up fine in Explorer and Windows Media Player, so I'm not sure why iTunes isn't recognizing it. Any ideas?

    I suspect the tracks have multiple tags which iTunes doesn't cope with. Each mp3 file should have a single ID3v2.3 tag for best results with iTunes. Some software creates both ID3v1 and ID3v2.x tags when creating mp3s. If these are edited with iTunes it may update one tag, but then later read back unchanged data from the other. MediaMonkey has some useful tools for cleaning tags, assuming that is the problem, and you can determine which version needs clearing out. Test with small samples to make sure.
    tt2

  • ITunes doesn't read ID3 tags properly on import

    hi all,
    today I've added ID3 tags to all my mp3 files, so that they will look better in iTunes and my iPod. I have added information for "title", "artist", "album" and "track #" in ID3v1 and ID3v2.3.
    Now, when I import these files to iTunes, the ID3 information is read only partly or not at all. This means, some tracks show all information, some only show title and artist, some do not show anything at all.
    I edited all the ID3 tags with the same software, which makes it even more mysterious. The software was implemented by myself in C#. To edit the ID3 tags, I used the library UltraID3Lib. I don't think that something is wrong with my software because the ID3 tags are displayed properly in Winamp without any problems.
    I have also already tried the option in iTunes to convert the ID3 tags, but this also only yields strange results: If I select "none" as ID3 version, iTunes obviously imports the information from the ID3v1 tags, but it deletes the ID3v2 tag at the same time, so that titles and albums are cut down to 30 characters. If I choose other options, nothing changes.
    Does anybody have an idea how to solve this problem? Or can someone maybe explain this "convert ID3 tag" option? It doesn't really make sense to me...
    Many thanks in advance!
    gehho.

    As far as I know (and it may not be very far), iTunes does use standard ID3 tags for most things. The XML file stores info on ratings, playlists, playcounts and other iTunes specific information for use by other applicaitons. iTunes itself doesn't use the XML file but rather the iTunes Library.itl file.
    It's possilble to do multiple file tag editing in iTunes for things like artist, album, year, etc. I would say, go with whatever works for you. It just seemed as if what you were doing wasn't working. Perhaps the other suggestion will solve you're problem.
    Best of luck.

  • Itunes does not read id3 tags and its a problem

    Ok I have 60 gig of music and all of it is labeled correctly in id3 tags. But when i add them all to itunes some of the songs are blank with no information at all but if i go into "show in explorer" the information in the id3 tags instantly pops up. I'v searched google and found nothing so i hope someone can tell me a fix or another program to use that will organise my music like itunes does and also can put music on my ipod. So please help me with the problem.
    Thanks

    It doesn't work. I'v already tried that. I'v even tried converting the id3 tags and then removing them from the libray and adding them again. Still nothing. It might help if someone could tell me where itunes gets it information for its tags when you add music to its libray seeing as it doesn't use id3 tags for the information like any smart program does.

  • ITunes cannot read ID3 tags written by Perl module MP3::Tag?

    Greetings,
    Just trying to re-arrange ID3 information in a large set of MP3 files. Before I run the following Perl script, iTunes can read the ID3 tagging information. After writing ID3 inform ation to the MP3, iTunes no longer reads any tagging information from the MP3.
    Does anyone have any information regarding this? There is some cryptic information in the MP3::Tag POD regarding setting the "id3v23_unsync" option but that doesn't seem to alter the impact on iTunes at all. Windows and other tag readers seem to be able to read the all ID 3v1 and ID3v2 tags just fine (including the altered fields) after running the following script.
    Thanks for any suggestions/guidance anyone can provide.
    Description: the following program takes an MP3 filename as input.
    Action: It appends the value in the Album field to front of the TITLE Field. That's it! Easy!
    #!/usr/bin/perl -w
    use MP3::Tag;
    MP3::Tag-> config(id3v23_unsync=>FALSE);
    my $filename = $ARGV[0];
    $mp3 = MP3::Tag-> new($filename);
    @info=$mp3-> autoinfo;
    @albnum = split(/_/, $info[3]);
    $frame = $mp3-> {ID3v2}->get_frame("TIT2");
    print $frame;
    $mp3-> {ID3v1}->title("$albnum[0] $info[0]");
    $mp3-> {ID3v2}->change_frame("TIT2","$albnum[0] $info[0]");
    $mp3-> {ID3v1}->write_tag();
    $mp3-> {ID3v2}->write_tag();
    @info=$mp3-> autoinfo;
    print $info[0]; //print ID3v1 TITLE field
    $frame = $mp3-> {ID3v2}->get_frame("TIT2");
    print $frame; //print ID3v2 Title2 field
    $mp3-> close();
    Thanks!
    GL
      Windows XP  

    SOLVED
    Changing the config entry (Line 3 in original listing) to:
    MP3::Tag->config("id3v23_unsync",0);
    fixed the problem with iTunes.
    NOTE: This means that iTunes version 7.x still has the synchronization problem alluded to in the documentation (POD) for this Perl module. I just had the syntax wrong to set the workaround parameter.
    That aside, iTunes 7.2 works quite nicely with the modified MP3. Artwork (even though this was a modified and obscure (and legal) Bible audio, it found additional information about the MP3 in the online database).
    Kind Regards,
    GL
      Windows XP  

  • Mediasource won't update ID3 tags!

    "Mediasource won't update ID3 tags!? Please help! I have been using Mediasource 5 over the years to painstakingly get my mp3 library organized just the way I want it. I know that the Media Source track info is not necessarily the same as what's stored in the ID3 tag of the files themselves. I am trying to update the ID3 tags so that the info matches what is in Media Source. The good news is, I can right click on my database in CMS and there is an option to "Update Track Properties". Within this window are two options: one to update the ID3 tags to match MediaSource, and another to update MediaSource to match the ID3 tags.
    So far so good, here's the problem. No matter which option you choose, it always does the latter of updating MediaSource to match the ID3 tags. ARGHH!! I've tried this over and over, trying both options, but no matter what I do, it's always copying in the wrong direction. That goodness I had backed up my database before doing it. I've tried both CMS 5.0.38 and the newer 5.20.23 but both have the same issue.
    So is there any way to get Mediasource to take it's data and copy it over the ID3 tag data? Anyone know of a patch or other software that read the CMS database file and do this?

    Mapleleaf3 wrote:
    2) Using the File>export button and clicking save in the CD drive is the correct way to put CD text onto the CD, right?
    Preferences > Advanced > Burning (tab)
    Under "Audio CD", check "Include CD Text"
    Mapleleaf3 wrote:
    3) Would this CD text be able to be read by other people's Itunes?
    CD-TEXT only allows capable audio players (portable CD players, certain car stereo CD players, etc.) to scroll that information across its display as the track is playing.
    For other people's iTunes to be able to retrieve the track listing, it has to be first uploaded into Gracenote's database, once Gracenote processes the information.
    Steve

  • Itunes is messing up ID3 tags and song info.

    I am wondering, why is itunes keeps on changing ID3 tags.
    For example. All my "The Thunderlords" songs have been changed to"thunderlords,the" Which I do not like. AC/DC got changed to DC/ac and the art was gone. Random comment such as "0" have been added to nearly every song. The album "The Wall" has been labled as "Wall, The" I do not like this >_> is THE wall not wall the. What the .... is wall the? It's not like I go around says "what heck the?" or "halo above his head the" I'm not Yoda! I'd just like to know how to stop itunes from editing this without my permission.
    All songs are MP3's. Details:
    96 kpbs (mono)/ 192 kpbs (Stereo), Normal Stereo, optimized for MMX/SSE, using MP
    Message was edited by: iRockers

    Welcome to the world of Gracenotes. This is the database that Itunes reads to name your files. Apple pays a royalty to these clowns and this is what you get; misspellings and just plain wrong info.
    I constantly sort and edit my 1300 CD collection so I would suggest you learn to do the same within iTunes. If the author names are reversed, fix one then copy. Itunes will let you select and change multiple fields once you learn to do multiple selection..not hard but tedious at times.
    Apple needs to threaten to let us use the free CDDB for an alternate look up and a swap button on authors names, and so forth..

  • Itunes won't read CD  - Need Help!

    Persisting problem! Itunes won't recognize my CDs though Windows media player reads and plays no problem. Went to Apple site and did all steps suggested, watched "how to" video on topic of ripping CDs, upgraded to version 6 itunes, upgraded firmware for my CD player. (Actually have 2 players and neither works with Itunes) The CD diagnostics in Itunes sees the CDs noting that "Audio CD reading succeeded". Go figure. It WON'T show the tracks and when I go to File - Import a dialog box opens for my drive but no content shows. HELP - I just got three of these for my family but it won't work!
    Dell Dimension 8200   Windows XP  
    Dell Dimension 8200   Windows XP  

    See Corrupt iPod classic.
    tt2

  • My iTunes won't detect my iPhone that has to be restored via iTunes *because if pass code problems* and its running iOS 7.2

    my iTunes won't detect my iPhone that has to be restored via iTunes *because if pass code problems* and its running iOS 7.0.4

    If itunes is comming up and saying it can't read the device because it's locked with a passcode, you may have to put your device into recovery mode first.
    To put your device in recovery mode: (Following these steps will erase your device and reset everything to factory defaults)
    1) press and hold the power button until you see the slide to power off option
    2) swipe to power off
    3) Press and hold the home button while the device is off and connect it to your computer. Continue holding the home button until you see a graphic with the iTunes logo with a picture of a USB cable below it.
    4) iTunes should give you a message that it has detected a device in recovery mode. Click ok and then select Restore iPhone. iTunes will download a fresh copy of iOS and then wipe the device and restore it. Depending on the speed of your computer's internet connection this may take a while. Just leave the iphone connected to your computer until it's finished.
    If itunes is not detecting it at all or is Not giving you the message that the phone is locked with a passcode, you may end up having to reinstall itunes. This seems to be a fairly common problem after the most recent itunes update (11.1.5)
    If this is the case and you happen to be running a windows based computer you will have to uninstall itunes in this order from your programs and features option in control panel:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Then download and reinstall itunes from itunes.com try putting your device into recovery mode again and restore.
    Hope this helps.
    Cheers.

  • Itunes won't read cds

    I just installed Itunes on my Dell Latitude (Xp). When I place a CD in, Itunes opens up, but it doesn't inport the songs. I read through the help section in the software and updated all of the drivers and still NOTHING. Any ideas on why this is happening? Any help would be appreciated folks.

    I'm having a similar problem on my Dell Dimension 8200. Itunes won't recognize my CDs though Windows media player reads and plays no problem. Went to Apple site, watched "how to" video on topic, upgraded to version 6 itunes, upgraded firmware for my cd player. CD diagnostics in Itunes sees the cds noting that "Audio CD reading succeeded". Go figure. It WON'T show the tracks and when I go to File - Import a dialog box opens for my drive but no content shows. HELP - I just got three of these for my family but it won't work!
    Dell Dimension 8200   Windows XP  

  • Reading id3 tags

    We can't get Flash 8 to read the id3 tags that are embedded
    in an mp3 that was created from iTunes.
    We bring an aif file into iTunes. Preferences are set to
    create an mp3 when importing. So, we create an mp3.
    Get info shows the data, we add more data (like into the
    comments field).
    We should have an mp3 with id3 tags but Flash does not
    recognize the data.
    Is ther anything we can do?

    And here's the code needed to get title, album and artist from an mp3 file.
    File file = new File(filename);
    AudioFileFormat baseFileFormat = AudioSystem.getAudioFileFormat(file);
    if (baseFileFormat instanceof TAudioFileFormat)
    {     Map properties = ((TAudioFileFormat)baseFileFormat).properties();
         String title  = (String)properties.get("title");
         String album  = (String)properties.get("album");
         String author = (String)properties.get("author");
    }

  • Nokia 5310 XpressMusic won't read MP3 tags

    Hi,
    I got the 5310 for Christmas of 2008. For a long time it was reading MP3 tags just fine (up until maybe three or four months ago). But, now, it seems that most of my MP3s I transfer, it won't read the tags on it. Usually if the album art is embedded to the MP3 it'll still read that, but it won't read song title, artist, album, track number, etc. However, this doesn't affect ALL of the MP3s. Maybe 15-20% of my MP3s are still read, even though they're tagged with the same program at the same time (I've tried tagging with both foobar2000 and iTunes and had the same result as far as what the phone will read). I don't know why it does this; I can open files directly off of my phone to foobar2000 and iTunes and both programs read every tag on every MP3 fine.
    Does anyone have suggestions for what to try to fix this? Maybe a different tagging program or something to do to the phone to get it to read the tags. It gets really annoying not having the option to sort by artist or album.
    Solved!
    Go to Solution.

    The music player reads ID3v2 tags and NOT ID3v1. Make sure that you have them in place. Some PC applications show and modify only ID3v1 tags. I don't use either of the apps that you mentioned, so, can't tell you if they are doing it. What I would suggest is to check the ID3v2 tags using Winamp/jetAudio (in windoze) or BMP/mplayer/amarok (in linux), and if necessary, update it and then transfer back to your phone.
    Cheers,
    DeepestBlue
    5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
    If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

  • Itunes won't regonize my iphone - running windows 8

    itunes won't recognize my iphone - running windows 8

    I found this under another post, it works(not stealing credit) just trying to help.  Re: Upgraded to iTunes 11.1 and now it won't recognize my iPhone Sep 18, 2013 2:15 PM (in response to davidsh_seattle) I was able to fix it!  iTunes can now see my iPhone5.    I followed these instructions: http://support.apple.com/kb/TS1538    And re-installed the "Apple Mobile Device USB Driver".    •     Right-click the Apple iPhone, Apple iPad, or Apple iPod entry in Device Manager and choose Update Driver from the shortcut menu.  •     Click "Browse my computer for driver software."  •     Click "Let me pick from a list of device drivers on my computer."  •     Click the Have Disk button. (If the Have Disk option is not present, choose a device category such as Mobile Phone or Storage Device if listed, and click next. The Have Disk button should then appear.)  •     In the "Install from Disk" dialog, click the Browse button.  •     Use this window to navigate to the following folder:  C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers.  •     Double-click the "usbaapl" file. (This file will be called "usbaapl64" if you have a 64-bit version of Windows. If you don't see "usbaapl64" here, or if there is no Drivers folder, look in C:\Program Files (x86)\Common Files\Apple\Mobile Device Support\Drivers. instead).  •     Click OK in the "Install from Disk" dialog.  •     Click Next and finish the driver-installation steps. Open iTunes to verify that the device is recognized properly.   this worked to sync my iphone 5. not i4 or i3 phones(now ipods) In Device Manager I also noticed I had 3 apple drivers under Portable devices.  I deleted two of them. I updated the remaining driver, now I can sync my i5, i4 and i3.  You may have to View hidden devices.  Open device manager view-show hidden devices portable devices apple iphone "highlight" right click, update device if you have multiple apple iphone under portable devices, delete all but one.

  • Itunes won't "read" because it was created by a newer version of itunes

    I just updated my operating system finally and when I try to open itunes I get : itunes won't "read" because it was created by a newer version of itunes.

    This error prevents iTunes from launching. The library file was modified to work with the newer iTunes version, so it is no longer compatible with the previous version. The good news, however, is that Apple does backup the iTunes library file into a subdirectory that you can use to revert back to the previous version.
    To recover a previous version of the iTunes Library.itl file, use the following steps:
    Open up your My Documents\My Music folder.
    We will first backup the current version. Rename iTunes Library.itl to something like iTunes Library.itl.bak.
    Go into the My Documents\My Music\Previous iTunes Libraries folder.
    You may see several files that start with iTunes Library and have a date included in the name. Copy the newest file in the folder.
    Go back to the My Documents\My Music and paste the file from the previous step.
    Rename the new copied file to iTunes Library.itl.
    Your library should now be restored to the previous version of iTunes, and you should no longer receive the message.

  • OS 10.7.5, iTunes 11.0.1, and iOS 6.0.2 ... everything is updated, but iTunes won't read iPhone 5 or iPad. Suggestions?

    OS 10.7.5, iTunes 11.0.1, and iOS 6.0.2 ... everything is updated, but iTunes won't read iPhone 5 or iPad as devices. Syncing was easy before recent iTunes update. Suggestions?

    Are you using the correct cables.  iPod cables look similar, but are not, as they are 1.1 USB cables, where your iPhone and iPad require a 2.0 USB cable.
    Also, make sure you are not plugging your USB cable into a Hub or keyboard USB port, but one directly on the computer.
    You may want to reset the USB ports, by resetting the SMC and PRAM
    HT1411 - Apple Portables: Resetting the System Management Controller (SMC)
    HT1379 About NVRAM and PRAM - http://support.apple.com/kb/HT1379.

Maybe you are looking for

  • Preview won't view/print PDF's correctly.

    I have used InDesign to create some brochures, but when I export the files as a PDF and try to view it in Preview, the program screws up the artwork. If I use a gradient or a transparant gradient, Preview wants to make it one solid colored object wit

  • Why do I have 2 gb of other on my iphone

    Ever since ios7 I have a huge amount of "other" on my iphone.  It is over 2 GB.  I deleted my browsing history in Safari and I have cleared out most of my emails since now they all reside on my phone (instead of just 50 as it was previously).  What i

  • Cisco social miner

    Hi team My client would like to implement social miner CCX 9.x but their concerns are that the server sits on the internet facing zone DMZ and the data base that house the transcript for web chat resides in the DMZ instead of the secured zone. Any su

  • Payment method with new bank details

    Hi All, im using a program to print the salary cheques for certain payment methods, after running the payroll. but now that the new bank details is not updated when i try to print the cheques.still looking at the old bank details for a payment method

  • Removing the compounding info objects

    Hi Experts, I am having  a problem with large master data tables in the production system. There are 2 custom info objects ZPCA_Doc and ZPCA_item for PCA document number & item number. ZPCA_DOC is compounded with doc_typ and ZPCA_Item is compounded w