ITunes not displaying all synced files that are on my iPhone.

All,
I am having an issue that I did not see here.
First, ever since the last iTunes upgrade (the one prior to the latest upgrade that added iTunes match), I have had problems with album artwork displaying on my iPhone. My efforts to solve that issue by deleting and then re-syncing tracks without artwork created another issue: Duplicate songs on my iPhone. The strange thing is, when the iPhone is connected to iTunes and I click "Music" under iPhone, the track list displayed in iTunes shows no duplicates. However, if I navigate on my iPhone (even while connected to my computer), it shows duplicates of several songs. The duplicates appear to be the ones that I tried to delete and then replace to show the artwork.
I have just done a "restore" on my iPhone to try to resolve the this issue since there apparently is no way to clear the duplicates in iTunes (remember - the duplicate tracks are not displaying). I will see if this solves the issue. Does anyone know what is happening here, and most importantly, how to prevent this from happening again? This is very annoying!

All,
I am having an issue that I did not see here.
First, ever since the last iTunes upgrade (the one prior to the latest upgrade that added iTunes match), I have had problems with album artwork displaying on my iPhone. My efforts to solve that issue by deleting and then re-syncing tracks without artwork created another issue: Duplicate songs on my iPhone. The strange thing is, when the iPhone is connected to iTunes and I click "Music" under iPhone, the track list displayed in iTunes shows no duplicates. However, if I navigate on my iPhone (even while connected to my computer), it shows duplicates of several songs. The duplicates appear to be the ones that I tried to delete and then replace to show the artwork.
I have just done a "restore" on my iPhone to try to resolve the this issue since there apparently is no way to clear the duplicates in iTunes (remember - the duplicate tracks are not displaying). I will see if this solves the issue. Does anyone know what is happening here, and most importantly, how to prevent this from happening again? This is very annoying!

Similar Messages

  • Podcast app not displaying all synced files

    One of my feeds is displaying only one file, even if multiple files are synced. I'm trying to play "This American Life," where I have downloaded the files manually and I import them into iTunes and convert them to a Podcast type. Then, I sync them to my iPhone 4.
    What's happening is that I'll have one file displayed, e.g., "511" but none other. In iTunes, however, I have synced many files: 511, 510, 509, and so on. However, they are not displayed in the podcast app. However, when I search for the files in ios, they appear searchable, but clicking on them only opens the podcast app to This American Life where there is only one file displayed.
    So far I've resynced podcasts many, many times. I've uninstalled the app from both the iPhone and iTunes, selected "Do not sync podcasts" and then reinstalled everything and attempted to only sync one file at a time. I've restarted my phone multiple times and I've updated to 7.0.4, all of which have no effect.
    Anyone have any ideas?

    FYI, there's another thread going on this issue:  https://discussions.apple.com/message/23501372#23501372
    No final solutions have been discovered yet by the end users.  Lotsa frustration out there!

  • How to display all the files that are selected using JFile chooser

    please hepl me i m posting my code here.
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.zip.Deflater;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    public class browser extends JFrame
    String curDir;
    JLabel statusbar;
    public browser()
    super("File Chooser Test Frame");
    setSize(1050,600);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    curDir = System.getProperty("user.dir") + File.separator;
    statusbar = new JLabel("Output of your button choice goes here!");
    Container c = getContentPane();
    c.setLayout( null );
    JButton openButton = new JButton("Browse file");
    JButton dirButton = new JButton("Pick Dir");
    JButton resetButton = new JButton("Reset");
    JButton submitButton = new JButton("Submit");
    final JTextArea tf = new JTextArea(100,50);
    final JList l1 = new JList("list");
    tf.setEditable(true);
    // add the open FILE chooser
    openButton.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
         JFileChooser chooser = new JFileChooser(curDir);
         chooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
         chooser.setMultiSelectionEnabled(true);
    //Java 1.6 can use FileNameExtensionFilter class
    // FileFilter filter=new FileNameExtensionFilter("HTML file","htm","html")
    // chooser.addChoosableFileFilter(filter);
    //Prior versions must use external extension of FileFilter class (ie ExtFilter)
    //ExtFilter requires separate compile to enable choosable selection
         String[] html = new String[] {"htm","html","xhtml"};
         int option = chooser.showOpenDialog(browser.this);
         if (option == JFileChooser.APPROVE_OPTION)
         File[] sf = chooser.getSelectedFiles();
         String filelist = "nothing";
         try
         if (sf.length > 0) filelist = sf[0].getCanonicalPath();
         for (int i = 1; i < sf.length; i++)
         {filelist += ", " + sf[i].getCanonicalPath();
    tf.setText("our choices" + filelist);
         catch (IOException evt) {System.out.println("Exception: "+evt);}
    statusbar.setText("Your choices: " + filelist );
    // String[] text = new String[100];
    //getChars(0,100,text[],0);
    l1.setText("your choices \n" + filelist);
         else {statusbar.setText("You cancelled!");}
    // add the open DIRECTORY chooser
    dirButton.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent ae)
    JFileChooser chooser = new JFileChooser(curDir);
    chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
         chooser.setMultiSelectionEnabled(false);
    int option = chooser.showOpenDialog(browser.this);
    if (option == JFileChooser.APPROVE_OPTION)
    File[] sf = chooser.getSelectedFiles();
    String filelist = "nothing";
    try
    if (sf.length > 0) filelist = sf[0].getCanonicalPath();
    for (int i = 1; i < sf.length; i++)
              {filelist += ", " + sf[i].getCanonicalPath();}
         catch (IOException evt) {System.out.println("Exception: "+evt);}
    statusbar.setText("You chose " + filelist);
         else {statusbar.setText("You cancelled!");}
    System.out.println("Example of ZIP file creation.");
    // Specify files to be zipped
    String[] filesToZip = new String[1];
    filesToZip[0] = "filelist";
    byte[] buffer = new byte[18024];
    // Specify zip file name
    String zipFileName = "example.zip";
    try {
    ZipOutputStream out =
    new ZipOutputStream(new FileOutputStream(zipFileName));
    // Set the compression ratio
    out.setLevel(Deflater.DEFAULT_COMPRESSION);
    // iterate through the array of files, adding each to the zip file
    for (int i = 0; i < filesToZip.length; i++) {
    System.out.println(i);
    // Associate a file input stream for the current file
    FileInputStream in = new FileInputStream(filesToZip);
    // Add ZIP entry to output stream.
    out.putNextEntry(new ZipEntry(filesToZip[i]));
    // Transfer bytes from the current file to the ZIP file
    //out.write(buffer, 0, in.read(buffer));
    int len;
    while ((len = in.read(buffer)) > 0)
    out.write(buffer, 0, len);
    // Close the current entry
    out.closeEntry();
    // Close the current file input stream
    in.close();
    // Close the ZipOutPutStream
    out.close();
    catch (IllegalArgumentException iae) {
    iae.printStackTrace();
    catch (FileNotFoundException fnfe) {
    fnfe.printStackTrace();
    catch (IOException ioe)
    ioe.printStackTrace();
    c.add(openButton);
    c.add(dirButton);
    c.add(statusbar);
    c.add(resetButton);
    c.add(submitButton);
    //c.add(tf);
    c.add(l1);
    Insets insets = c.getInsets();
    Dimension size = openButton.getPreferredSize();
    openButton.setBounds(745 + insets.left,115 + insets.top, size.width, size.height);
    size = dirButton.getPreferredSize();
    dirButton.setBounds(755 + insets.left,165 + insets.top, size.width, size.height);
    size = statusbar.getPreferredSize();
    statusbar.setBounds(755 + insets.left,215 + insets.top, size.width, size.height);
    size = resetButton.getPreferredSize();
    resetButton.setBounds(755 + insets.left,265 + insets.top, size.width, size.height);
    size = submitButton.getPreferredSize();
    submitButton.setBounds(755 + insets.left,465 + insets.top, size.width, size.height);
    size = tf.getPreferredSize();
    tf.setBounds(25 + insets.left,5 + insets.top, size.width + 150, size.height + 430);
    size = l1.getPreferredSize();
    l1.setBounds(25 + insets.left,5 + insets.top, size.width + 150, size.height + 430);
    setSize(1000,800);
    setVisible(true);
    public static void main(String[] args)
    new browser();

    Start by defining "display". Then continue by reading this:
    http://forum.java.sun.com/help.jspa?sec=formatting

  • On Windows 7, neither my quicktime or iTunes will start. This started after I installed the newest update. All the files that are needed are there. I recently updated Quicktime to see if that would work, but it didn't.

    This started after I installed the newest update. All the files that are needed are there. I just updated Quicktime to see if that would work, but it didn't. I looked through some other discussions like this, and found out that all of my files are correct. Some people are saying that they needed to remove Filebot, but I can't find that on my computer. Help, please?

    This started after I installed the newest update. All the files that are needed are there. I just updated Quicktime to see if that would work, but it didn't. I looked through some other discussions like this, and found out that all of my files are correct. Some people are saying that they needed to remove Filebot, but I can't find that on my computer. Help, please?

  • I download a file in the torrent site which is MP4 but unfortunately i tried to delete it but i can not. but all the files that i have is easily to delete only MP4 files i can't delete in the download foldeer please try to help dont know what to do please

    i download a file in the torrent site which is MP4 but unfortunately i tried to delete it but i can not. but all the files that i have is easily to delete only MP4 files i can't delete in the download foldeer please try to help dont know what to do please

    Well you can sync your iPod/iPhone to yur computer or laptop then take the photos off of your iPod like taking photos of of a SD card (from a normal camera) or off of a USB..! Good Luck. plz tick this saying This solved my question if it helps you.

  • Files that used to be visible are now hidden in Mavericks. How can I change the setting to view the same files as before? I do not need the hidden files that are typically invisible.

    Files that used to be visible are now hidden in Mavericks 10.9.1. How can I change the setting to view the same files as before? I do not need the hidden files that are typically invisible.
    I am having trouble locating such files as PDF's INDD, AI etc. When I view all hidden files and try to open it in the program..it looks like it is really not on the drive. Has anyone come across a solution?

    You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
    Repair User Permissions

  • ITunes can't locate some files that are right where they should be

    I'm using iTunes 12 for Windows.  I keep a huge iTunes library at home on a mapped NAS share and the same library at work on a local drive.  Every week on Monday I sync my entire iTunes folder from home to an external drive and then bring that external drive to work and sync it to my local drive there.  (Note: This is a one way sync; I never sync in the other direction.)  This system has worked flawlessly for six years.
    Within the last six weeks, I've started to get error messages on my work system saying that many (>1600) media files of various types cannot be located.  I assumed corruption was the issue so I deleted my entire 500GB iTunes folder and re-copied everything back over.  Not just the media files.  Everything.  The problem persists and I cannot figure out why.
    I have confirmed that iTunes on the work computer is referencing the correct iTunes library file.  I have confirmed that iTunes is pointing to the correct iTunes folder.  I have confirmed that the "missing" iTunes files are right where they should be.  (I have always had iTunes set to move imported media into the iTunes folder so there is no stray media floating around on either system.  And I have iTunes set to organize the media.)
    It is worth noting that I started seeing this around the time when I upgraded to iTunes 12.  When I upgraded to iTunes 12 I had to change the path to my home library from "\\<NAS>\iTunes\iTunes Music" to "M:\iTunes\iTunes Music" due to a bug in iTunes that created iPhone syncing issues if the iTunes library is on a network drive.  But I can't figure out why this would matter.  The path on the work computer is correct and all media files are there.
    Ideas? I just don't understand how deleting everything and starting over doesn't solve the issue since there is NO issue at home.

    Thanks again for your help with this, tt2.  (I keep wanting to call you "Alan".)
    I totally botched the repair process, including my library and media collection, four different times.  If not for the fact that I had a complete, up-to-date copy of my library and all media files I would be completely scr3wed right now.  I'm going to outline the mistakes I made for the benefit of those who might reference this thread in the future.
    A big part of my struggle was the underlying assumptions I was making about how the iTunes database is maintained and tracked.  It is not the same as the digital asset managers I use for work—Lightroom, for example.  I really had to quit thinking for myself and pay attention to what tt2 wrote about the way the iTunes db works in the link he provides earlier in this thread about making split libraries portable.
    The biggest mistake I made is failing to understand that after you move the iTunes library files (but not the media files) to a new iTunes drive or directory outside of the existing iTunes folder and then shift-click to open that relocated library in iTunes you have to set the iTunes Media folder location (in preferences>advanced) to the empty iTunes Media folder in the NEW iTunes folder.  You do NOT set it (or leave it) pointed to the old iTunes Music/Media folder where your files [may] actually reside before consolidation.  This mistake can make a bad situation much worse. 
    Finally, I did not have a split library in the sense that my media files were outside of my iTunes Media folder.  Because of this, when I incorrectly pointed the new iTunes library to the old iTunes Media folder and then consolidated I created 9,936 duplicate files.  I had a complete back up which made eliminating the duplicate files a simple process.  Without the backup I would have been in trouble.
    So...to fix my problem I followed tt2's instructions and did this:
    Backed up my entire M:\iTunes folder including libraries and media files.  If everything goes well, this backup will not be touched.
    Created a new A:\iTunes folder plus an empty A:\iTunes\iTunes Media folder.
    Moved everything from M:\iTunes to A:\iTunes EXCEPT for the iTunes Music* folder.  (*It was the new iTunes 9 and later hierarchy but with the old name.)
    Shift-Clicked to open iTunes and selected the iTunes library inside A:\iTunes.
    Once iTunes was open I went to Edit>Preferences>Advanced and made the empty A:\iTunes\iTunes Media the location of my media.
    Went to File>Library>Organize Library and choose "consolidate". After hours of file copying, my issue was resolved. A:\iTunes is portable.
    Confirmed that the new A:\iTunes library correctly links to all media in the A:\iTunes\iTunes Media folder and then deleted the M:\iTunes directory with the old M:\iTunes\iTunes Music folder inside.
    NOTE: It bears repeating that the problem solved was that I could not move my old M:\iTunes folder to a different workstation w/o breaking some of the links.  However all the links worked fine in the M:\iTunes location.  If this were not the case then this solution will not resolve anything. 

  • ITunes not displaying ALL remote speakers...

    All,
    I have two airport expresses hooked up, but I can only get airtunes to work with the express that is 'extending' the range of my network. The airport express connected to my modem will not display in iTunes. How can I troubleshoot this and get both airports to appear in iTunes drop-down????
    thanks in advance,
    Dr. S
    Macbook   Mac OS X (10.4.10)  

    Hmm, what column is your current view sorted on? Many of them don't keep the tracks of an album together. See Use an album friendly view. Assuming you knew that already a screenshot might provide clues.
    tt2

  • SAP job not using all dialog processes that are available for parallel processing

    He Experts,
    The customer is running a job which is not using all the dialog processes that are available for parallel processing. It appears to use up the parallel processes (60) for the first 4-5 minutes of the job and then maxes out about 3-5 processes for the remainder of the job.
    How do I analyze the job to find out the issue from a Basis perspective?
    Thanks,
    Zahra

    Hi Daniel,
    Thanks for replying!
    I don't believe its a standard job.
    I was thinking of starting a trace using ST05 before the job. What do you think?
    Thanks,
    Zahra

  • How can I populate my PC HD with all the files that are currently on my iPod Classic?

    I think I've changed PCs three times since I've had my iPod Classic 80 gb.
    I think because of this, I have lost copies of files on my PC along the way (probably some of them remained in the earlier PCs and never made it to my current PC) although everything still seems to be on my iPod. So, I often get the message "Cannot locate file."
    Is there a way to populate my current PC with all the files I have on my iPod?
    Simply syncing my iPod doesn't seem to do the trick.
    Thanks for the help!

    You cannot use an iPod backup to restore to an iPad, nor can you use an iPad backup to restore to an iPod.
    Some apps support data syncing through iCloud, but this feature needs building into the app by the developer. If your app doesn't support this, then I believe there is no way to transfer the data between your two devices.

  • HT4910 My iCloud contact list does not contain all the contacts that are in my phone.  If I delete one from my phone it will delete it instantly from the iCloud contacts.  But how do I get all those other contacts on my phone to the iCould on my Windows c

    My iCloud contact list does not contain all the contacts listed in my iPhone 5S.  If I delete a contact from the phone it instantly deletes it from the iCloud on my PC.  But my PC iCloud list is lacking many of the contacts on my phone.

    And which account did you enter these contacts in?
    On My Mac
    or
    iCloud?

  • I need to intercept all local files that are being loaded in Firefox. How can that be achieved?

    I am using geckofx in c#. I need to intercept response of a local file load request so that I can modify some data/response before it reaches Javascript.
    In short, I need something like
    1. JS requests browser to read a file.
    2. Browser reads content of a file.
    3. MAKE SOME MODIFICATIONS TO DATA (Additional Step)
    4. Then pass this modified data to JS to perform required tasks.
    Is this possible? If yes, how can this be achieved.

    You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
    Repair User Permissions

  • Itunes not finding all .mp3 files

    I retagged all of my mp3's and ever since then itunes only seems to recognize about half of them. I am not sure if it has to do with file name length or what but it gets almost exactly half of them when I tell it to import the folder. I have tried two other media programs and both of them import everything just fine. I was wondering if this is a known problem and, if so, if there is an easy fix for it. I have tried uninstalling itunes and del. the itunes folder in my music but it still doesn't work. Thanks in advance for any help.

    The samething happened to me last night, what a nightmare. Did you ever get a response or find out what to do?

  • Why is Verizon Cloud not displaying all the files I've backed up?

    I've gone through the backup procedure using Verizon Cloud on my iMac and this appeared to go well, at least in monitoring the backup process stage.  About 40GB of files were backed up.  However, Cloud is only showing about 9GB of my backed up files (e.g., about 600 songs of 4000 and some pictures appear to be missing as well).  I don't know how to correct this.  Thanks for any help.

    Try using Applications/Utilities/Disk Utility to verify/repair the drive.

  • ITunes not transferring all songs from my playlists to my iPhone. Only a handful gets transferred.

    I have a Mac Mini that I recently bought and transfered my iTunes Library from my previous Macbook to the mini.
    I can see all the songs in iTunes (running in the Mini) and can also play them, all playlists intact.
    Now when I tried to synch my iPhone with the iTunes (in the Mini) it all went fine, except that after the synching a lot of my songs are missing from my iPhone.
    I tried to run the synch again, but did not help.
    Can you please let me know how I can have all the songs synched to my iPhone.
    Thanks
    Debz

    Yes of course.
    In fact all the missing songs were in my iPhone4 before I did my synch with the new Mini.
    And before the synch I made sure that all required playlists are checked for synching in iTunes.
    This is very annoying ... I think my last resort is to do a factory reset and then connect to my Mini to build it from scratch. But I would wanna avoid that as much as possible.

Maybe you are looking for

  • Payment program configuration

    Hi, We have a payment program config issue. We have around 14 company codes. For all the company codes we have only one paying company code 2000. Now for a company code 1000, we want to pay some project related expenses by the particular company code

  • Traveling out of the country, can I use a converter to charge

    We will be traveling throught Europe and I want to be sure that I can charge our family's 2 iPod touch devices using a regular travel converter.  I know you cannot use a standard converter for a laptop but what about our iPods

  • Transactions fail with XACT_E_NOTRANSACTION

    First, I am new to Oracle! I have an ASP.Net application that consists of ASPX pages that call/instantiate COM+ .Net Serviced Components (written in C#). These COM+ .Net Serviced Components access an Oracle 9i database. All of my software resides on

  • Sap note changes

    Hello Experts, We want implemented SAP OSS note for GL. But how do we verify what changes are done by implementhing the note. how to check the code changes? - PT

  • In which stores iphone 5 is available now in NY?

    In which stores iphone 5 is available now in NY?