Itunes places imported tracks in different albums with same name

When I import a CD, itunes can't seem to keep these files in the same album if they happen to be by different artists.  I've tried manually editing the track information using the "get info" screen, but just can't get it.  The initial download places the tracks together, but after I use the "get track titles" option and download the track titles from Gracenote, I'm left with multiple albums, even though the albums show as having the same name.

Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
tt2

Similar Messages

  • Can I run 2 different domains with same name but on 2 different machines?

    I am trying to setup 2 domains with same name (sharedcds1) on 2 different machines (Machine1 and Machine2).
              When I start the weblogic managed server 1 (sharedcds1managedserver1) on Machine2, it throws an error saying it has some conflicts with the managed server 1 running on Machine1. How did the managed server of one machine know about the other server. Can I run 2 different domains with same name but on 2 different machines?
              Here is the error in the log -
              <Jun 14, 2005 10:53:29 AM EDT> <Error> <Cluster> <BEA-000123> <Conflict start: You tried to bind an
              object under the name weblogic.transaction.coordinators.sharedcds1managedserver1 in the JNDI tree.
              The object from 4596206652609838848S:130.170.61.153:[9505,9505,-1,-1,9505,-1,-1,0,0]:sharedcds1:s
              haredcds1managedserver1 is non-clusterable, and you have tried to bind more than once from two or m
              ore servers. Such objects can only be deployed from one server.>
              <Jun 14, 2005 10:53:29 AM EDT> <Error> <Cluster> <BEA-000123> <Conflict start: You tried to bind an
              object under the name weblogic.transaction.coordinators.sharedcds1managedserver1 in the JNDI tree.
              The object from 8842351474821025197S:130.170.61.154:[9505,9505,-1,-1,9505,-1,-1,0,0]:sharedcds1:s
              haredcds1managedserver1 is non-clusterable, and you have tried to bind more than once from two or m
              ore servers. Such objects can only be deployed from one server.>
              Thanks
              Satish

    Yes you can. Make sure that domains configured to use different multicast address. WLS uses multicast for communications between nodes in domain.
              although your configuration will work, you could have troubles if you going to execute inter-domain calls between domains/servers with the same names.

  • One Artists, Two Albums With Same Name Displaying Together

    I have my itunes setup to show artists in grid view. When I double click on a particular artist and look at the albums, I see two separate albums grouped into one. This artist has two albums named the same; one from 1980 and one from 2003. They are distinctly different albums with the same name. The only way I can separate them is to tack on [2003] to the album title of the newer one. Is there a way to have them with just the name but separated?

    iTunes identifies an album by its name. If there is more than one album with the same name then iTunes will see it as one album. As you have found you have to give them different names.

  • Grouping albums with same name but different artist?

    I have two albums in iTunes 7 which will not group correctly - either they show up as 24 or so separate albums or a single compilation or so on! I've tried marking them as compilations, as not compilations, you name it.
    They share the same album name, but have different artists and genres. How can I convince iTunes that they are two distinct albums? (I would have thought this test should be part of the application's logic, to be honest!)
    Gavin

    Note: I have this album set to be a compilation, I have filled in Queen in all 17 tracks as the album artist and all 17 tracks have the same Album name, it still does not group together properly when sorting by Album Artist (only when sorting by Album Name).
    iTunes 7 adds support for the ¨Album Artist¨ tag (as used and required by Windows Media Player). Adding support for this tag was actually a request I made myself a while ago.
    Unfortunately iTunes is not using this tag in a useful way (as it was intended). The purpose of this tag (as used by Windows Media Player) is to cope with Albums that contain more than one artist, a good example album is Queen's Greatest Hits III (see http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=161431875&s=14344 4 ) this album contains tracks by or featuring David Bowie and George Michael (amongst others) as well as Queen themselves, despite this, everyone would consider the Album itself to be by Queen.
    The purpose of the Album Artist tag is so that you can browse by the Album Artist and see the entire album listed (and not just those tracks specifically by Queen themselves). Therefore iTunes should if in browse view mode and sorted by Album Artist show the entire album grouped together - IT DOES NOT. Instead it appears to be being sub-sorted by Artist (as well as Album Artist) and this results in it being split in to 3 or more sections. This applies to all three view modes including the Coverflow view.
    As things stand the only benefit I get from iTunes now supporting the Album Artist tag is greater compatibility with Windows Media Player, apart from that it appears completely useless in iTunes as currently implemented.

  • Problem in importing two different classes with same name...

    I have to import two different classes in my program with the same name....
    import org.apache.lucene.document.Document;
    import org.w3c.dom.Document;
    //    I AM USING THE DOCUMENT FROM W3C PACKAGE HERE....
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder builder = factory.newDocumentBuilder();
                     InputSource is = new InputSource( new StringReader( tempString ) );
                     d = builder.parse( is );
                     NodeList images = d.getElementsByTagName("img");
                     int length = images.getLength();
                     for(int i = 0;i<length;i++)
                         Node image = images.item(i);
                         String tempAltText = image.getAttributes().getNamedItem("alt").getNodeValue();
                         altText = altText.concat(" ").concat(tempAltText);
                     }and the error i am getting is
    [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:20: org.apache.lucene.document.Document is already defined in a single-type import
        [javac] import org.w3c.dom.Document;
        [javac] ^
        [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:132: incompatible types
        [javac] found   : org.w3c.dom.Document
        [javac] required: org.apache.lucene.document.Document
        [javac] d = builder.parse( is );
        [javac] ^
        [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:133: cannot find symbol
        [javac] symbol  : method getElementsByTagName(java.lang.String)
        [javac] location: class org.apache.lucene.document.Document
        [javac] NodeList images = d.getElementsByTagName("img");
        [javac] ^
        [javac] Note: Some input files use unchecked or unsafe operations.
        [javac] Note: Recompile with -Xlint:unchecked for details.
        [javac] 3 errorsany idea ..how to resolve it
    Edited by: ping.sumit on Jul 16, 2008 3:39 PM
    Edited by: ping.sumit on Jul 16, 2008 3:40 PM

    now i changed the code to
    import org.apache.lucene.document.Document;
    import org.w3c.dom.Document;
    org.w3c.dom.Document d = null;
    try{
         System.out.println("in author");
                   URL url = new java.net.URL(urlString);
                   java.net.URLConnection conn = url.openConnection();
                   BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   while ((in.readLine()) != null)
                        //tempString = tempString.concat(in.readLine());
                        String temp = in.readLine();
                        tempString = tempString + " " + temp;
                   System.out.println("the string in author" + tempString);
                    in.close();
                    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder builder = factory.newDocumentBuilder();
                     InputSource is = new InputSource( new StringReader( tempString ) );
                     d = builder.parse( is );
                     NodeList images = d.getElementsByTagName("img");and their is only one error i am getting ...and that is
    [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:20: org.apache.lucene.document.Document is already defined in a single-type import
        [javac] import org.w3c.dom.Document;
        [javac] ^
        [javac] Note: Some input files use unchecked or unsafe operations.
        [javac] Note: Recompile with -Xlint:unchecked for details.
        [javac] 1 error

  • Can't import RAW and psd file with same name different extension

    Trying to import a folder of images from desktop that I have been working with in Bridge CS3.
    LR won't import a RAW file that has a PSD file by the same name. Tried renaming the PSD and deleting the one with the same name, but says it is still there and won't import the RAW file - What is the correct workaround on this? Why can't it import same name files with different extensions?

    A forum search for 'RAW + JPEG' will give you more posts on this than you care to read. This will change. For now, import the RAW and PSD's from separate folders and then move them together for within LR.
    LR is seeing the RAW as a sidecar to the PSD. It is an unforseen effect of the RAW + JPEG thing where they decided to not import the JPEG, seeing it as basically a preview image for the RAW.
    LOL
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • Two albums with same name combined into one

    I have two greatest hits albums by different artists. Both albums are called 'greatest hits'. In iTunes on my Mac they appear as two different albums. I've just synched my music from my Mac to my iPhone (iOS8 I think). The albums have been merged into one greatest hits album (artists X songs have been added to artists Y a. How do I stop this?
    On my Mac I've renamed one album 'hits' and then resynched. There are now two albums: Hits by artist Y and Greatest Hits by artist Y (with no album artwork and the songs are actually by artist X).
    Thanks for any helps

    iTunes identifies an album by its name. If there is more than one album with the same name then iTunes will see it as one album. As you have found you have to give them different names.

  • Albums with same names interleaved

    I have several albums by different artists with the same title - "Greatest Hits"
    When I sort by Album, it shows them to me with all of the tracks 1 together, tracks 2 together, etc. For an example, see:
    http://alansmith.smugmug.com/photos/108162250-L-0.jpg
    Any idea on how to fix this?
    Thanks in advance,
    Alan

    Alan
    I have had a similar problem with compilation albums which I solved (partially at least) by this fix: highlight all the tracks on the album in question then use Command-I. In the Info subsection fill in the Album Artist section with the appropriate name. (Gracenotes does not always fill in this data but adding it myself seems to work for my albums).
    [For compilation albums, I just put "Various artists" in the album artist box otherwise, like your screenshot, I get multiple album covers for the same album which makes scrolling thro' a pain].
    If anyone knows a better way then please let me know.
    Hope I've been of some help!
    Regards
    gasman1966
    iMac G5   Mac OS X (10.4.7)   iMac G4 17 inch Flat panel 8OOMHz

  • Two Albums with Same Name

    What is the best way to differentiate between two albums that have the same name? When I sort my Library by Album, the songs from albums with the same name are mixed together. I tried setting a "Grouping" but that doesn't seem to help.

    although not a perfect solution, you could use the disk number field. Highlight your album, right-click, choose "Get Info". Put each album as a different disk number and you'll be sorted.
    Normally this is for double albums where you'd have "1 of 2" and "2 of 2". However you can put in much larger numbers. I've been to 21, but I'd assume it goes much higher.

  • Importing multiple albums with same name

    I have two different soundtrack recordings of a movie, which I am trying to import from CDs. But iTunes 10 keeps munging the tracks into a single album and I have not found a way to keep the albums separated. I've loaded one and changed the album name by adding "Original Soundtrack". Then trying to import the other version, iTunes pops up a message about duplicate tracks and overwrites into the previous directory even when I check "Don't Replace".
    I've seen a lot of questions about how to delete duplicate albums, but I can't find a way to get near-duplicates into the library. Any suggestions?

    iTunes uses a maximum of 40 characters for file and folder names. if the original album title is long enough they may still clash at the folder level before you add any extra text.
    When the CD is sitting in your drive & before you start ripping, you can use Get Info. to edit indivdual tracks or properties for the whole album, e.g. set the Album title, complete the Album Artist field, or select Part of a compilation.
    If iTunes is recognising both albums (which you say are distinct recordings) as being the same thing then perphaps your edits get stored in the local database and applied to the second album when it is inserted into the drive. You should however be able to select any particular set of tracks and give them the albun title you feel is appropriate without anything else being modified.
    tt2

  • Import Library Error two functions with same name on different namespaces

    Im trying impor a library developed by me. In this library have two functions ShowMenu. First function be inside into a class and its declared as
    void __fastcall TTrayicon:howMenu(). The second function has declared as extern "C" __declspec(dllexport) ShowMenu(int x, int y).
    When i use de assistant to import this library i select the library and its header file. But in the next step the assistant show to me the first function.
    Anyone explain what's happen?

    I'm not sure what kind of answer you're looking for. LabVIEW's Import Library wizard does not always properly handle accessing functions in standard C++ DLLs. See this for more info.

  • Albums with same name diff artist appear as the same album in iphone

    I have four albums named "greatest hits" all from different artist (smashing pumpkins, blink, rhcp...), in my itunes library they appear ok and not as one whole album, when I synch, in my iphone I see the four of them with their respective covers and such, BUT under each title no matter the artist, there are ALL THE SONGS IN ALL THE ALBUMS named "greatest hits".
    in other words, I have in my iphone 4 albums named "greatest hits" under 4 different artist, but in everyone of them, I have the same songs, which are all the songs in all the "greatest hits" albums.
    why does this happen? how do I fix it other than changing the album titles?
    thanks!

    You've run into one of the "features" of the iTunes/iPod family. I'm afraid renaming the album titles is the only option. See my previous post on Grouping Tracks Into Albums, in particular the topic One cover, too many tracks.
    tt2

  • Bug report - different episodes with same names won't update correctly in the list of pcast-episodes

    I think there was no similar report yet. Sorry if repeated.
    I use podcasts app only on my iPad - no iTunes syncing or whatsoever - as simple as possibly could be in terms of functionality.
    Background: I am subscribed to a posdcast of a radiostation programme where weekly usually same people give interviews. For example, each Tuesday the guy named A.B. is a guest of the programme. So each Tuesday episode almost always named: Interview - A.B. So 09.10.2012 there was episode named: Interview - A.B. then 15.10.2012 there is also an episode named Interview - A.B.
    Problem: even though in the list of episodes I can see these two each with correct date stamp, when I tap 15.10.12 episode to play, it would play the previous episode (of 09.10.2012). I know it's the podcasts app bug, because good old iPod app would play everything correctly.
    That's shamy.

    Very similar problem for me.  A podcast has several different episodes per day broken down by hour.  It will totally mix up the files and names and descriptions, seemingly grabbing them from random days surrounding what it should be.  Sometimes two simlarly named files will play the same audio.  It's totally messed up.  I can't figure out any pattern for this either.
    Although I'm sure it happens for podcast episodes with titles that are not similar as well.

  • Ipod sort by album - two albums with same name

    Is this a bug? When I am browsing my music via "Albums" on my iPod, any duplicate album titles are shown as one album. For example, "Let it Be" by the Beatles appears, but not "Let it Be" by the Replacements. When I click into it, all the songs from both albums are there, but they are staggered. How can I make these appear as two separate albums in this view?

    I find that the whole sorting capabilities of iTunes and ergo iPod are sorely lacking...
    You'll also find that you can have the SAME album listed twice if your id3 tags have one or more spaces after the album name, but there's no indication that there are superfluous spaces until you go into the errant file and see what the title actually is...
    ie: Let It Be
    Let It Be <space><space><space><space><space> [I'm not sure why these occur, but they do...]
    Here's what I'd like to see:
    Tracks listed by Artist; Year; Album; Disc #; Song #, no matter which column you pick...
    What I mean by that is if I click on Artist, I'd like to see the albums in order of release and songs in order of appearance on CD. If there's more than one CD in a set, they should appear in numerical order...
    Further to this, if I click on Year, the artists should appear alphabetically, the Disc # and Song # appear numerically
    For the life of me I can't figure out why this is so hard for software developers to understand...
    ok, I'm done...
    Dave

  • Two methods with same name but different return type?

    Can I have two methods with same name but different return type in Java? I used to do this in C++ (method overloading or function overloading)
    Here is my code:
    import java.io.*;
    public class Test{
    public static void main(String ar[]){
    try{          
    //I give an invalid file name to throw IO error.
    File file = new File("c:/invalid file name becasue of spaces");
    FileWriter writer = new FileWriter(file ,true);
    writer.write("Test");
    writer.close();     
    } catch (IOException IOe){
         System.out.println("Failure");
    //call first method - displays stack trace on screen
         showerr(NPe);
    //call second method - returns stack trace as string
            String msg = showerr(NPe);
            System.out.println(msg);
    } // end of main
    public static void showerr(Exception e){
         StringWriter sw = new StringWriter();
         PrintWriter pw = new PrintWriter(sw);
         e.printStackTrace(pw);
         try{
         pw.close();
         sw.close();
         catch (IOException IOe){
         IOe.printStackTrace();     
         String stackTrace = sw.toString();
         System.out.println("Null Ptr\n" +  stackTrace );
    }//end of first showerr
    public static String showerr(Exception e){
         StringWriter sw = new StringWriter();
         PrintWriter pw = new PrintWriter(sw);
         e.printStackTrace(pw);
         try{
         pw.close();
         sw.close();
         catch (IOException IOe){
         IOe.printStackTrace();     
         return sw.toString();
    }//end of second showerr
    } // end of class
    [\code]

    Overloading is when you have multiple methods that have the same name and the same return type but take different parameters. See example
    public class Overloader {
         public String buildError(Exception e){
              java.util.Date now = new java.util.Date() ;
              java.text.DateFormat format = java.text.DateFormat.getInstance() ;
              StringBuffer buffer = new StringBuffer() ;
              buffer.append(format.format(now))
                   .append( " : " )
                   .append( e.getClass().getName() )
                   .append( " : " )
                   .append( e.getMessage() ) ;
              return buffer.toString() ;
         public String buildError(String msg){
              java.util.Date now = new java.util.Date() ;
              java.text.DateFormat format = java.text.DateFormat.getInstance() ;
              StringBuffer buffer = new StringBuffer() ;
              buffer.append(format.format(now))
                   .append( " : " )
                   .append( msg ) ;
              return buffer.toString() ;
         public String buildErrors(int errCount){
              java.util.Date now = new java.util.Date() ;
              java.text.DateFormat format = java.text.DateFormat.getInstance() ;
              StringBuffer buffer = new StringBuffer() ;
              buffer.append(format.format(now))
                   .append( " : " )
                   .append( "There have been " )
                   .append( errCount )
                   .append( " errors encountered.")  ;
              return buffer.toString() ;
    }Make sense ???
    Regards,

Maybe you are looking for

  • Starting and stopping stream capture repeatedly

    Hi, I am building a vmail server that captures an incoming, continuous RTP voice stream from a hardware phone and records portions of that stream to disk, based on control messages received (like record/stop buttons for a continuous RTP stream). The

  • Elements 11 Camera Raw not supporting new Canon EOS 7D MkII.

    When I try to open a Raw file from my new camera I get the message 'Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw. Please visit the Camera Raw help doc

  • I can't hear alert sounds

    I can't hear alert sounds, keyboard clicks, and sounds from some Apps.  I can hear sound on YouTube.  I've checked the sound button on the side and the sound settings.  Mute is not on and the volume is at the max.

  • Can't startup blinking folder question mark

    There are similar questions in these forums, but my situation is different. My MacMini froze and I had to press the power button on it to restart it. I get the folder with the blinking question mark. I do not have any disks in the drive. I have not i

  • Acrobat X: Markierung unveränderbar speichern

    Guten Tag! Folgendes Problem: Ich habe sehr oft den Fall, dass ich in PDF Dokumenten Bereiche Abdecken muss (das mache ich mit einem weißen Rechteck aus den Grafikmarkierungen) oder aber einfach Zahlen / Textstellen überschreiben muss. Das Überschrei