Split screen not previewing album art

Hi - I've done a search and couldn't find any answers, hope I'm posting in the right place etc.
I bought an 80GB iPod classic a few weeks ago but this morning a work colleage took my iPod without my knowledge, and plugged it in to his computer; it initially failed to install drivers and froze up, he then unplugged it and I reset (held down "menu" and centre buttons). The iPod worked perfectly after the reset.
He then took it again and tried to use it with Winamp - the drivers installed this time - and he copied all of my music across to his hard drive through winamp (all of which occurred without my permission).
After he ejected the ipod, there were lots of problems, most of which I have resolved, but the seemingly impossible one is that album art doesn't preview on the right side of the screen when I have menus up anymore. This is one of the main reasons I bought the iPod Classic - for the sleek interface - and I'm really frustrated I can't fix it. There are also some problems with album art appearing when I play songs - it appears in Cover Flow, but once I play a song from that album, the standard apple 'note' symbol appears on the left of the screen.
Any ideas? Please? I'm desperate and very upset as I just bought this.
Thanks!

Try restoring your iPod. Restoring will erase the iPod's hard drive, reload the software and put it back to default settings. Once the restore is complete follow the on screen instructions and it should connect to iTunes and give you a prompt to automatically update your library onto the fresh installation: Restoring iPod to factory settings with iTunes 7

Similar Messages

  • Some of the album artwork on my iPod is wrong. I've tried to change it many times but it doesn't change. I've decided that the easiest thing to do now would be to NOT display album artwork on my iPod. How do I set my iPod to NOT display album art?

    Some of the album artwork on my iPod is wrong. I've tried to change it many times but it doesn't change. I've decided that the easiest thing to do now would be to NOT display album artwork on my iPod. How do I set my iPod to NOT display album art? I've checked the User manual and that doesn't help.

    Why don't you, instead of taking time to do that, just backup, and then restore your iPod?
    Just a suggestion..

  • How to find all songs that do not have album art

    I create several smart playlists for housekeeping, like songs with no year, songs with no album name, etc. I wanted to create a similar one that lists all songs that do not have any album art associated with it. I have not seen this option when creating a playlist, but I didn't know if there was a way to write a script (that could run on Windows) that could create this playlist for me. I can (and have) gone through each song individually to note which did not have album art, but I have almost 5000 songs, and this is not really feasible any more.
    Has anyone else done anything similar to this? Any suggestions are greatly appreciated.

    Awesome !!! Thank you very much. I did not realize you could use JavaScript to code against iTunes ...
    I don't know if you have written any of these yourself, but do you know how to maybe create a smart playlist with this information via script? If not, no big deal. At least I know have something which I can use, I will just have to run it every so often.
    Thanks again for pointing me to that site!

  • SALV in Split Screen - not refreshing

    I have a Report based program with Selection Screen
    Upon entering valid Inputs program calls screen 100.
    On Screen 100, I placed following elements
      Docking Container
           Splitter Container with 2 rows with Docking container as Parent
                  Placed a Toolbar object on the Top container of the split. Toolbar has 2 buttons BSID & BSAD
                  If user clicks BSID, then I have to show a SALV report in Lower Split
                  If user clicks BSAD, then I have to show a bit different data SALV report in same Lower Split
    I tried several methods to refresh the data in SALV( I used 1 SALV)
    Data is not refreshing in the second split...
    I see that Lower Split container has children attribute set.. I tried to free() the lower container, but it deletes cmplete container itself, what can I do to refresh the data without completely redoing all the container stuff?
    Also Children attribute in Split container is Read-only, how can I change this one ?
    Valid answers would receive points...

    PROGRAM  yvtest3 LINE-SIZE 512.
                                  CLASSES
    CLASS: lcl_main  DEFINITION DEFERRED,
           lcl_event DEFINITION DEFERRED.
                                   TYPES
    TYPES: BEGIN OF t_kna1,           " Customer Info
            kunnr TYPE kna1-kunnr,
            name1 TYPE kna1-name1,
           END OF t_kna1.
    TYPES: BEGIN OF t_lfa1,           " Vendor Info
            lifnr TYPE lfa1-kunnr,
            name1 TYPE lfa1-name1,
           END OF t_lfa1.
                                   OBJECTS
    DATA: o_tlbar TYPE REF TO cl_gui_toolbar,
          o_split TYPE REF TO cl_gui_splitter_container,
          o_dock  TYPE REF TO cl_gui_docking_container,
          o_main  TYPE REF TO lcl_main,
          o_event TYPE REF TO lcl_event,
          o_top   TYPE REF TO cl_gui_container,
          o_down  TYPE REF TO cl_gui_container.
                                 INTERNAL TABLES
    DATA: i_kna1 TYPE STANDARD TABLE OF t_kna1,
          i_lfa1 TYPE STANDARD TABLE OF t_lfa1.
                                   PARAMETERS
    PARAMETERS: p_dbcnt TYPE sy-dbcnt DEFAULT '500'.
          CLASS lcl_event DEFINITION
          Events Definition
    CLASS lcl_event DEFINITION.
      PUBLIC SECTION.
        METHODS: on_click FOR EVENT function_selected OF cl_gui_toolbar
                           IMPORTING fcode.
    ENDCLASS.                    "lcl_event DEFINITION
          CLASS lcl_main DEFINITION
          Main Definition
    CLASS lcl_main DEFINITION.
      PUBLIC SECTION.
        METHODS: constructor.
    ENDCLASS.                    "lcl_main DEFINITION
                                    GET DATA
    START-OF-SELECTION.
    Get Customers
      SELECT kunnr name1
          FROM kna1
          INTO TABLE i_kna1
          UP TO p_dbcnt ROWS.
      IF sy-subrc = 0.
        SORT i_kna1 BY kunnr.
      ENDIF.
    Get Customers
      SELECT kunnr name1
          FROM kna1
          INTO TABLE i_kna1
          UP TO p_dbcnt ROWS.
      IF sy-subrc = 0.
        SORT i_lfa1 BY lifnr.
      ENDIF.
      IF i_kna1 IS NOT INITIAL OR i_lfa1 IS NOT INITIAL.
        CALL SCREEN '0100'.
      ELSE.
        MESSAGE 'No data exists for entry criteria'(001) TYPE 'I'.
        LEAVE TO LIST-PROCESSING.
      ENDIF.
          CLASS lcl_event IMPLEMENTATION
           Events Implementation
    CLASS lcl_event IMPLEMENTATION.
      METHOD on_click.
        CASE fcode.
          WHEN 'KNA1'.
            TRY.
                CALL METHOD cl_salv_table=>factory
                  EXPORTING
                    r_container = o_down
                  CHANGING
                    t_table     = i_kna1.
              CATCH cx_salv_msg.
                MESSAGE 'SALV - error'(007) TYPE 'I'.
                LEAVE TO LIST-PROCESSING.
            ENDTRY.
          WHEN 'LFA1'.
            TRY.
                CALL METHOD cl_salv_table=>factory
                  EXPORTING
                    r_container = o_down
                  CHANGING
                    t_table     = i_lfa1.
              CATCH cx_salv_msg.
                MESSAGE 'SALV - error'(007) TYPE 'I'.
                LEAVE TO LIST-PROCESSING.
            ENDTRY.
          WHEN 'EXIT'.
            LEAVE TO SCREEN 0.
        ENDCASE.
        cl_gui_cfw=>flush( ).
      ENDMETHOD.                    "on_click
    ENDCLASS.                    "lcl_event IMPLEMENTATION
          CLASS lcl_main IMPLEMENTATION
          Main Implementation
    CLASS lcl_main IMPLEMENTATION.
      METHOD constructor.
        DATA: lw_evnt  TYPE cntl_simple_event.       " Events
        DATA: li_evnt  TYPE cntl_simple_events.      " Events
    Create Docking Container
        FREE o_dock.
        CREATE OBJECT o_dock
          EXPORTING
            repid                       = sy-cprog
            dynnr                       = '0100'
            side                        = 1            " dock_at_left
            extension                   = 400
            lifetime                    = 1            " Dynpro
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Docking Container'(002) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Create Split Screen
        FREE: o_split,o_top,o_down.
        CREATE OBJECT o_split
          EXPORTING
            parent            = o_dock
            rows              = 2
            columns           = 1
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Splitter Container'(003) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Set Sash Invisible
        o_split->set_row_sash( id    = 1
                              type  = o_split->type_sashvisible
                              value = o_split->false ).
    Set Row Height of 1st Container to fit Buttons
        o_split->set_row_height( id = 1 height = 5 ).
        o_top  = o_split->get_container( row = 1 column = 1 ).
        o_down = o_split->get_container( row = 2 column = 1 ).
    Create Toolbar
        CREATE OBJECT o_tlbar
          EXPORTING
            parent             = o_top
            lifetime           = 1
          EXCEPTIONS
            cntl_install_error = 1
            cntl_error         = 2
            cntb_wrong_version = 3
            OTHERS             = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Toolbar'(004) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Add Buttons to the Toolbar
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'KNA1'
            icon             = ' '
            butn_type        = 0
            text             = 'KNA1'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'LFA1'
            icon             = ' '
            butn_type        = 0
            text             = 'LFA1'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'EXIT'
            icon             = ' '
            butn_type        = 0
            text             = 'Exit'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Add Events
    register events for toolbar-control
        lw_evnt-eventid = o_tlbar->m_id_function_selected.
        APPEND lw_evnt TO li_evnt.
        o_tlbar->set_registered_events( li_evnt ).
    Create Event Handler
        CREATE OBJECT o_event.
        SET HANDLER o_event->on_click FOR o_tlbar.
      ENDMETHOD.                    "constructor
    ENDCLASS.                    "lcl_main IMPLEMENTATION
    *&      Module  STATUS_0100  OUTPUT
          Screen 100 Init
    MODULE status_0100 OUTPUT.
      IF o_main IS NOT BOUND.
        CREATE OBJECT o_main.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT

  • Finder Not Showing Album Art

    hey -
    i'm running a 2011 macbook pro -- i did a software update today (a lot of updates as Lion was recently released), but i HAVE NOT updated to Lion yet (a bit nervous about the bugs and slower performance).
    my computer no longer shows the album art in the FINDER. the embedded artwork is fine, the id3 tags are fine... when i open the files in itunes the artwork shows, but just not in finder... i remember this exact problem when itunes 9 was around (fixed by itunes 10 update)... anyone else having this issue??

    First try updating your Video card/drivers.
    Also try updating your directX from microsoft here
    http://www.microsoft.com/downloads/details.aspx?Famil
    ID=2da43d38-db71-4c1b-bc6a-9b6652cd92a3&displaylang=en
    Thanks I've checked those out and still no joy!

  • Itunes 10.5 not showing album art or syncing it to my ipod touch

    I updated iTunes and suddenly it's now showing any of my album art? The artwork is still showing up on my iPod touch 4g, just not on iTunes. Also when I add artwork to an album it isn't syncing to my iPod at all. Just curious if I'm the only one having this problem or if anyone has a solution?

    I have the same problem with a Iphone 3g with windows 7 and itunes 10.4

  • ITunes not Finding Album Art (Which Does Exist)

    For reasons that I have been unable to ascertain, iTunes cannot find album art for some albums that I have ripped. The art does exist on iTunes--I've done a search and checked. The song text matches; the album title appears to match; but iTunes politely informs me "Artwork could not be found."
    This is not due to the fact that these are songs I have ripped myself; iTunes has found plenty of other album art for tunes I've ripped myself. Something else is going on. A couple of examples for folks to chew on:
    Godzilla - Blue Öyster Cult - Don't Fear The Reaper: The Best Of Blue Öyster Cult
    Mirror In The Bathroom - The English Beat - Beat This! The Best of the English Beat
    Freeze-Frame - J. Geils Band - Freeze Frame
    The Healer - John Lee Hooker - The Healer
    There are plenty of others; that's just a sample. Any advice would be appreciated.
    Doug
    iPhone    

    Hello,
    so there's no way of adding new covers to iTunes by drag and drop to the left bottom box??? I have to add the cover with +I only?
    I've tried yesterday to add the covers with a simlpe drag and drop into the useful bottom-left box.... It didn't work... C'mon Apple!
    It kinda *****...
    PS: Adding covers via the new "import cover from apple store" fonction doesn't work as well. Youth bugs I presume
    Macmini , ibook 12   Mac OS X (10.4.7)  

  • Very Strange and nasty iTunes (not iPod) Album Art Problem

    Hi,
    I have the latest version of iTunes for Windows and I have never noticed this before on a previous version, but when I try to add album art to most (over 90%) of songs, the addition won't stay if I select another song.
    Even worse, if I try to add art while the song is playing, not only will the addition dissappear, the song corrupts in the process. It's as if the jpeg file is inserted into the audio data itself, as the song will grow by a number of seconds (the growth consists of skips and repeats.)
    I'm using iTunes with Windows Media Center. I have iTunes maintain my music folder, while Media Player / MCE monitors nothing. I also have a Media Center Extender setup (an Xbox360) that accesses my music as well (through the media player / MCE database.)
    None of my music files are tagged as read-only. I have a suspicion that the cause of the problem may be along similar lines (file permissions, access, etc.) but nothing I've
    tried works (including resetting all file permissions.)
    In addition, none of the iTunes Art Importers work. In using the most popular one (iTunes Art Importer,) the program crashes to a .NET/CLR debugger when I try to import art. Looking at the stack trace, it appears as if the error concerns DLL access.
    Any help on this issue would be greatly appreciated, as this is a pretty horrible bug (as it has ruined several songs.)
    Thanks,
    Mark Roboff
    Dell w/ Windows MCE 2005 Rollup 2     Connected to xbox 360 Media Center Extender

    Use the SHIFT-Launch iTunes method to get iTunes waiting for a library. Stick the iPod in disk mode and connect to the computer. Browse *My Computer* and right-click on the drive for the iPod, click Properties, then click Tools. Under Error-checking, click *Check Now*. Under Check disk options, select *Scan for and attempt recovery of bad sectors* (Optional - takes ages but a good idea if you've reason to suspect physical damage). Click Start. Mac users should run *Disk Utility / Repair Disk* for the equivalent process. This should find and correct any errors in the logical & physical structures of your iPod's hard drive which may be causing the problem. When the process is complete disconnect the iPod and then reset it (hold Menu+Select ). Cancel the waiting iTunes dialog and then try to connect in the normal way.
    If that still doesn't work you could try Erase your iPod - The Super Fix for most iPod Problems. Basically a low level format of the iPod’s hard drive to get around whatever problems are stopping iTunes from working with it.
    Have you tried connecting the iPod to another computer to see if the issues is focused on the iPod or iTunes?
    tt2

  • While playing, Front Row does not display album art but a white image only

    When I go through my music library via Front Row, the album art is still visible, however, as soon as I play a track, the cover disappears and there's a white square instead that, as usual, changes its position from the left to the right side. Could that be due to size limitations? My album art is 2400 x 2400, approximately 4 MB each. Thanks.

    Same for me on my Mac Mini: I can see the shared pictures but can't see the ones in the local library. Funny thing is that I can see that library from my other Mac.
    Also I noticed that one picture appeared in the middle of the (empty) slideshow, only 1 of 67. In the list view, those pictures appear normally, as you can see in this screenshot http://d.pr/eiXB
    I'm a first-time iLife user, so I don't know if the issue is '11-specific.

  • 5530 Not displaying album art?

    Don't know what is going on, It shows art work in OVI suite and Music player but on the phone itself shows nothing at all.
    Only time it shows artwork is of I download from music store.
    Anyone any ideas? 

    I have been trying to find a solution to this problem for a while and now I have at last.
    Do the following and all your media art problems will be sorted out;
    Connect your Nokia device to your PC using the USB cable provied and select PC Suite Mode. WMP will recognise your device.
    In WMP, go to library and Select the music file you wany to synch to you nokia phone.
    Rght click the song under the Title column.
    Select Advanced Tag Editor
    In the advanced Tag Editor menu, select Pictures.
    Click the Picture Type drop tab and select User defined
    Click Apply and OK to exit
    In the WMP library Drag to song to the synch pane to your right.
    Click Synch buttom at the right bottom
    Disconnect device and check the song in the device playlist "Recently Added"
    You will be able see the album art right in your device library and during playback. 

  • How to change screen icons and album art?

    Does anyone know of an application, or otherwise know how to change the screen icons individually, one at a time? I don't mean adding or changing to a different summerboard. Ideally, I'd like to change a few of the icons to either photographs from my files, or to some other photo or drawing of my choosing.
    While I'm asking questions, another one concerns album covers in iTunes. ITunes gives you the ability to add more than one cover to an album but I can't see how to display one other than the original one added. Also, I can't see how to delete a cover once it's been added. I was manually adding cover art for albums that didn't have any and accidently put the wrong picture on one album. Nothing I have been able to do allows me to delete that picture. I did add the correct picture but I can't get it to display. Of course, whatever I do in iTunes I'd like for it to properly sync to the touch.
    Any ideas???

    As for your first question, there is no way of changing icons without jailbraking, which we're not allowed to discuss here.
    To view more than one artwork, simply click on the little arrow appearing in the artwork window.
    To delete it, right-click, Get Info -> Artwork and delete the picture.
    Hope this helps.

  • ITunes does not add album art though being added manually..

    Hello people..
    i have this problem, i just bought an iPod and used the iTunes 9 for the library and all. got some of the artwork from the store and some i downloaded manually and tried adding them..
    now the thing is, it saved some of the artwork that i added manually and then it stopped doing that.. i tried restarting and closing iTunes and then opening it again, but it didn't work.. i don't know why!
    any help please?

    Would the problem album have all tracks by the same artist? If there are guest artists, your phone is not set up to Use Album Artists, and you're selecting the album via the Artist menu that might explain the issue.
    For general tips see Grouping tracks into albums.
    It may help to look at a concrete example with details of which tracks do and don't make it to the iPhone.
    tt2

  • I am not getting album art/thumbnail of album category in MusicLibrary (only getting default mp3 icon / thumbnail.Type == ThumbnailType.Icon) in WP 8.1 ,C#.Not getting ThumbnailType.Image. Plz Help

     private async Task GenerateMusicInternalStorageItems(IReadOnlyList<StorageFolder> musicLibrary)
                foreach (StorageFolder item in musicLibrary)
                    try
                        IReadOnlyList<IStorageItem> folderContents = await item.GetItemsAsync();
                        if (folderContents.Count > 0)
                            MusicMyDeviceFolderViewModel objMusicMyDeviceFolderViewModel = new MusicMyDeviceFolderViewModel();
                            objMusicMyDeviceFolderViewModel.Name = item.Name;
                            objMusicMyDeviceFolderViewModel.AlbumPath = item.Path;
                            objMusicMyDeviceFolderViewModel.ItemCount = folderContents.Count;
                            StorageFile firstFile = folderContents.OfType<StorageFile>().FirstOrDefault();
                            if (firstFile != null)
                                const ThumbnailMode thumbnailMode = ThumbnailMode.DocumentsView;
                                const uint size = 300;
                                using (StorageItemThumbnail thumbnail = await firstFile.GetScaledImageAsThumbnailAsync(thumbnailMode, size))
                                    if (thumbnail != null  /*&& thumbnail.Type == ThumbnailType.Image*/)
                                        BitmapImage genThumbnail = new BitmapImage();
                                        genThumbnail.SetSource(thumbnail);
                                        objMusicMyDeviceFolderViewModel.Thumbnail = genThumbnail;
                            albumList.Add(objMusicMyDeviceFolderViewModel);
                    catch
    This is my Code ? now i commented  - > thumbnail.Type == ThumbnailType.Image. i am not getting image. default mp3 icon is getting for all album
                                              

      private async Task GenerateMusicFolderItems(IReadOnlyList<StorageFolder> musicLibrary)
                foreach (StorageFolder item in musicLibrary)
                    try
                        IReadOnlyList<IStorageItem> folderContents = await item.GetItemsAsync();
                        if (folderContents.Count > 0)
                            MusicMyDeviceFolderViewModel objMusicMyDeviceFolderViewModel = new MusicMyDeviceFolderViewModel();
                            objMusicMyDeviceFolderViewModel.Name = item.Name;
                            objMusicMyDeviceFolderViewModel.AlbumPath = item.Path;
                            objMusicMyDeviceFolderViewModel.ItemCount = folderContents.Count;
                            StorageFile firstFile = folderContents.OfType<StorageFile>().FirstOrDefault();
                            if (firstFile != null)
                                const ThumbnailMode thumbnailMode = ThumbnailMode.MusicView;
                                const uint size = 300;
                                using (StorageItemThumbnail thumbnail = await firstFile.GetThumbnailAsync(thumbnailMode, size))
                                    if (thumbnail != null  /*&& thumbnail.Type == ThumbnailType.Image*/)
                                        BitmapImage genThumbnail = new BitmapImage();
                                        genThumbnail.SetSource(thumbnail);
                                        objMusicMyDeviceFolderViewModel.Thumbnail = genThumbnail;
                            albumList.Add(objMusicMyDeviceFolderViewModel);
                    catch
            }

  • IPod Touch not displaying album art in "now playing" view

    I recently migrated my iTunes library from my iMac to my MacBook. I did not experience any problems with the migration, and did it over my wireless home network.
    Since then, some of my album artwork will not show in the "now playing" view on my iPod touch, but they do show in cover flow and in iTunes. I have synced numerous times, but that has not solved my problem.
    Help! This is driving me crazy!

    I called Apple and was told that I needed to restore the iPod. The problem is that I had purchased and installed the January upgrade on my iMac and not my MacBook.
    I restored the iPod on the iMac and then synced to the MacBook.
    Problem solved!

  • ITunes 10 does not add album art to 'Now playing' song

    If an artwork is added to a song being played, via drag&drop into the artwork box or copy-paste or via the 'Get Info' window, it is not displayed in the artwork box; it is, however, visible in the Artwork section of the 'Get Info' window.
    The cover art is displayed only after another song is played or iTunes is re-launched.
    Any ideas anyone?
    iTunes 10.6.3
    OS X Lion 10.7.4
    Intel iMac

    I called Apple and was told that I needed to restore the iPod. The problem is that I had purchased and installed the January upgrade on my iMac and not my MacBook.
    I restored the iPod on the iMac and then synced to the MacBook.
    Problem solved!

Maybe you are looking for