HELP : MP3 icons in finder (quicklook)

After a restauration (leopard after a crash), my finder does not present my MP3 files with their covers (in otunes, all is ok) : in finder, MP3 files are now with generic pictures (mp3 files and a note) : no more original cover arts. How can i see my MP3 files with cover arts in fider (quicklook or finder simple)
Thanks

Hi,
I am having the same exact problem. unfortunately the terminal command did not work in my case. Is there anything else that I can try?
Thanks very much!
If it helps, I keep getting this console error message:
2/25/09 12:29:45 AM quicklookd[338] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Volumes/kiwi/iTunes Music/Theo/Unknown Album/Pictures in Buckets.mp3>'
2/25/09 12:29:45 AM quicklookd[338] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Volumes/kiwi/iTunes Music/Theo/Unknown Album/Pictures in Buckets.mp3>'
2/25/09 12:29:55 AM quicklookd[348] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Volumes/kiwi/iTunes Music/A.C. Newman/The Slow Wonder/01 Miracle Drug.mp3>'
2/25/09 12:29:55 AM quicklookd[348] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Volumes/kiwi/iTunes Music/A.C. Newman/The Slow Wonder/01 Miracle Drug.mp3>'
2/25/09 12:30:07 AM quicklookd[353] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Volumes/kiwi/iTunes Music/Aaron Parks/Invisible Cinema/05 Into The Labyrinth.m4a>'
2/25/09 12:30:07 AM quicklookd[353] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Volumes/kiwi/iTunes Music/Aaron Parks/Invisible Cinema/05 Into The Labyrinth.m4a>'
2/25/09 12:30:17 AM quicklookd[355] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Volumes/kiwi/iTunes Music/A Tribe Called Quest/Unknown Album/04 I Left My Wallet in El Segundo.mp3>'
2/25/09 12:30:17 AM quicklookd[355] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Volumes/kiwi/iTunes Music/A Tribe Called Quest/Unknown Album/04 I Left My Wallet in El Segundo.mp3>'
Message was edited by: jbaruch

Similar Messages

  • Help - lost icons in finder window

    Hi, Somehow i lost some icons, and i can't get them back. When I click on the HD icon, i get the finder window. Listed are: network, MacHD - a line, then: Desktop, User Icon, Applications, Pictures, and Favorites. I almost positive I also had a Music and Utilities icon in there. Last night i had some problems with my mouse and several times heard and saw the famous "cloud" and "swoosh disappear sound". After, I had fewer icons in the finder. Can someone verify the icons that should be there, and how do I get them back?
    Thanks...

    Here is what Mac Help has to say about sidebar items:
    To customize the list of basic sidebar items, choose Finder > Preferences and click Sidebar. Select the checkbox next to items you want to show.
    To add a personal item, drag it to the lower part of the sidebar. You cannot add items to the upper section.
    To remove an item, drag its icon out of the sidebar.
    Drag items up or down in the sidebar to organize them.
    To change the width of the sidebar, drag the divider bar beside it. You can show just the icons or hide it completely.
    To eject a disk or disconnect from a volume, click the eject icon next to the item in the upper part of the sidebar.
    So, you should be able to drag items of your choice into the sidebar.
    EMAC G4 1.0 GHz   Mac OS X (10.4.6)  

  • TS4268 Please help, I can't find face time and Siri icon on my mini ipad? Just bought it I have the IMessage icon and is able to use it.

    Please help, I can't find face time and Siri icon on my mini ipad? Just bought it I have the IMessage icon and is able to use it.

    There is no Siri "icon". You access Siri using the Home button. But you may need to turn it on: Settings App > General > Siri. http://support.apple.com/kb/HT4992
    Same for the FaceTime function (but if it is ON, there will be an icon): Settings App > FaceTime > [turn it on and set you Apple ID. http://support.apple.com/kb/HT4319

  • 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
            }

  • Mp3 icon does not display artwork

    Good afternoon,
    Hopefully someone can help regarding a mp3 icon artwork issue (albiet minor). I will user Tagr to change the tagging info as well as add artwork, and normally, when it's saved, the icon will change from the default black-with-notes to the artwork. Within the last 2–3 days, it's stopped displaying the artwork, even in Quicklook and Coverflow. When the album is dropped into iTunes, it does appear. This has happened on both my home and work computers (both MacPro desktops running Snow Leopard, with all updates).
    Any ideas? Would the recent OSX 10.6.8/iTunes 10.4 update have something to do with it?
    Thanks for any help or insight in advance.
    James

    MBP Battery Troubleshooting:
    To check for a bad battery, go to Apple/About This Mac/More Info
    In the System Profiler window, select the Power entry & look for Health Information.
    If next to Condition it says "Check Battery" then your battery is probably on the fritz.
    FAQ:  Apple notebook batteries – maintenance and troubleshooting

  • Quicktime icons in Finder - scrubbable?

    Is it possible to scrub the icon of Quicktime movies in the Finder? I use this feature a lot in Shotgun and it's really helpful to quickly scrub through a tiny movie icon without using Quicklook or opening it up in Quicktime Player.
    Using Mountain Lion and Mavericks here (two different machines)

    Is it possible to scrub the icon of Quicktime movies in the Finder?
    Not as an icon and in the QL preview window only if the file is QL compatible (which has changed for many files under Mavericks).

  • Desktop mp3 icons blinking when using external monitor

    I am using a macbook pro retina with osx 10.8.2.
    I attached to the DELL U2312Hm monitor using a DVI cable into my HDMI port (using an adapter).
    The monitor connects well, except when I move the mouse across my macbook pro desktop, or move it across the dividing line and onto the Dell, all of the mp3 icons on my macbook pro desktop start blinking.They flash quickly, back and forth between the black icon and a white icon that indicates the file designation (aiff or mp3).
    I think it has something to do with the fact they are the only interactive icons on the screen (they have the play button embedded onto the icons). No other icons are affected.
    Anyone want to take a stab at what is going on here?
    Thanks.

    Hi BradnBeaverton,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Whether or not you are using an Apple Cinema Display, the behaviour you are describing is the same:
    Apple Cinema Display: Troubleshooting steps
    http://support.apple.com/kb/HT2810
    Desktop icons move after screen resolution change
    Changing the screen resolution affects the display of information on your screen, especially changing to a smaller resolution. The operating system may automatically reposition icons after you change the screen resolution.
    OS X Mountain Lion: About the Display pane of System Preferences
    http://support.apple.com/kb/HT5369
    Cheers,
    - Judy

  • Document icon in Finder window differs from Get Info icon

    I've been noticing unexpected document icons in Finder windows for quite some time.
    This is especially true for PDF files. Since the early days of Mac OS X, I've configured my Macs to open PDF files in Adobe Reader, and I'm accustomed to seeing an Adobe PDF document icon on each PDF file. For some time, I've been seeing different PDF icons, e.g., a document with fuzzy text lines and a black ring binding on the left edge.
    I thought this might be a custom icon. But when I do a Get Info on the PDF file, the conventional Adobe PDF icon appears in the Get Info window.
    Is this different between the Finder icon and the Get Info icon a bug or a feature?
    -- Ward

    It's a feature. Any window that has the View Options set to "Show Icon Preview" will do that. It actually is rather handy in a folder that is set to icon view, with nice BIG icons, you can often see the first page (which is what is displayed) clearly enough to recognize exactly what the file is. In List view it isn't at all helpful, nor is it helpful in those cases where you have icon view set, but the icons are quite small (as is the case on my Desktop, and, I suspect, on most people's Desktops). A pdf that has multiple pages will additionally show the "binder" along the left edge. The Finder is drawing these custom icons on the fly from the contents of the file. The only way to defeat it is to turn of the Show Icon Preview for the folder(s) where you don't want an essentially useless and often counter-productive icon. Do that from the Finder's View menu item, Show View Options. Oh, and every folder has different options for each view. So you can turn it off for List view, but have it turned on for icon view, where it might actually be useful.
    Francine
    Francine
    Schwieder

  • Network icon in Finder not functional

    I have an Intel Mac Mini Core 2 Duo w/OS X 1.4.10.
    My Network icon shows up in Finder just fine. BUT, below that it only shows three folders
    Applications
    Library
    Users
    I can't see or browse my network at all. I can click on Go --> Connect To Server and manually do it, but I would rather have the option to see all the machines on my network. I have tried removing and re-adding the Network icon in Finder | Preferences. I have done a killall -HUP Finder.
    I tried deleting all of those folders. Now my Network is empty, at least according to the OS X point of view.
    On the flip side, I know Samba is working because I can browse the Mac from all my PC's.
    Does any of you Mac guru's know what's going on? I know *nix and I know Windows. Mac's are fairly new to me...
    Thanks

    username/password - I inherited this machine so yes, I am pretty sure I might have done that. Would it be easier to create another user and that way the preferences would be "fresh"?
    Hey, great idea for a test!
    I saw in that other Network folder problem thread about deleting a file called com.apple.systempreferences (or something very similar). Would that help?
    The partial list of filesfolders I've seen cause problems are...
    /Library/Preferences/com.apple.sharing.firewall.plist
    /Users/nnnnLibrary/Preferences/com.apple.internetconnect.plist
    /Library/Preferences/SystemConfiguration/preferences.plist
    /Library/Preferences/SystemConfiguration/NetworkInterfaces.plist
    /Library/Preferences/SystemConfiguration/SystemConfiguration/
    I haven't been using it very long so configuring settings over again isn't a big issue.
    If User settings aren't the problem... doesn't look like it to me so far, then an Archive and Install from your Install CD/DVD might be the trick.
    P.S. Should I have to recreate the Network folder after reboot? applejack didn't recreate it if it was supposed to...
    No, Applejack doesn't create anything... the OS should re-create that Network stuff once it reboots and finds none... maybe you have to toggle/do some Network stuff afterwards... not sure... still a bit blown away that what I did to fix the problem in several instances like yours... came up empty on your end!

  • Corrupt file type icons in finder

    Hi there,
    I discovered a problem with small icons in Finder and it's driving me insane that I can't figure out how it happened and how to remedy it. Hope anyone here can help!
    The symptoms:
    The problem concerns .mkv and .srt files. In the list or column view in Finder, these file types have exec icons instead of the regular VLC icons. However, when I change to icon or cover flow view, the correct VLC icons are shown. Also in quick look the correct icons are shown. So, the problem only seems to concern small icons, but not large ones.
    I tried to change the icon via Command+I. The preview icons are correct, only in the tool bar the incorrect small exec is shown. However, when I drag-drop the small exec icon from the bar to the large item, also small exec icon in Finder changes to the correct VLC icons. But only for this particular file and for all files of that type. Also when I download a new .srt or .mkv file the small icons are again exec images. SOO weird!
    What scares me a little is that I did a another clean install of Yosemite after I discovered this. And nothing changed! What is happening here? I hope someone can help!
    Potential cause: 
    The problem wasn't there after I updated to Yosemite. I did a clean install and everything was fine. However, at one point I ran the OS X version of Gmaptool  (a .img merge app for Garmin navigation maps). The app is only a command line and the file also has an exec icon. After I ran this command line, the problem occurred. Does anyone know how this could have happened?
    Thanks for your help! It's driving me insane!

    Perhaps it's a good idea to upload a few screenshots
    As you can see in the first three pictures, only small icons show the exec icon. Large ones are the correct VLC icons. The last two show the Info windows. In the first one, you can see the small exec icon in the tool bar. It changed after I dropped this exec icon on the icon field (see second Info picture). However, this only changed the small icon for this particular file, not for all .srt files.
    Is there some weird preference causing this? I also found a few system files now have exec icon (see picture below). I think that wasn't the case before. How can I change it? Can I reset the small icons somehow? Would it help to securely erase the hard drive? I have nothing on the drive anyways, so that would be an easy option for me.
    Thanks!

  • Is there a any way to refresh/reload file icon in finder 10.8?

    Hi,
    I am looking for programatically to refresh/reload file icon in finder. I already tried below solutions.
    1) apple script
    a) tell application "Finder"
          update POSIX file "File Path"
        end tell
    b)
    tell application "Finder"
              repeat with i from 1 to count of Finder windows
                        tell window i
                                  try
      update every item with necessity
                                  end try
                        end tell
              end repeat
    end tell
    both are working before 10.8, not working after 10.8
    2) Apple event
            err = AEBuildAppleEvent( kAEFinderSuite, kAESync, typeApplSignature,
                                    &kFinderSig, sizeof(OSType), kAutoGenerateReturnID,
                                    kAnyTransactionID, &theEvent, NULL, "'----':alis(@@)", itemAlias );
    Not working in 10.8, worked in 10.7
    3) Refresh Quicklook cache.
    4) Changing the modified date of file. This works, but need solution without changing file system.
    5) relaunch finder. This works,but need solution without relaunch. This is ugly.
    It looks finder cache the icon.
    Thanks
    P

    Hi P,
    I am facing similiar problem (http://discussions.apple.com/message/22716409#22716409), have you any finding about the issue or any workaround.
    Thanks

  • Still no Pages icon in Finder windows

    Re "no Pages icon in finder winder" below.
    Thanks for the help again, howeverthe installation of Pages from the original disc is not possible. Even though the MacBook I bought running 10.4.8 is not very old the new MacBook running 10.5.7 will not accept the software from the older discs. I've tried repairing Permissions of course, transferring the files via network, as well as everything IceClean has to offer, so I'm a little bit disappointed. Paul

    Welcome to Apple Discussions
    It's not a good idea to copy the iWork folder from one Mac to another because some files, particularly hidden files, may not be moved. Either reinstall from the original disk or use Set Up/Migration Assistant to move applications.
    After installing any software or update, especially if it asks for an administrator password, you should use Disk Utility to repair permissions.

  • Need Help creating Icon overlays for my SVN Client

    Hi I am currently writing an cross platform SVN client. I have icon overlay working in windows and linux. This is a small image that sits on top of the normal icon in finder and represents the current state of the file, e.i out of sync, up to date, un-versioned. But am really struggling trying to get it to work in OSX. At this point I only want it to work in snow leopard. This is where I have got to so far.
    I managed to create a QL plugin that worked. The only issue with QL plugins is that you have to specify what file types your plugin works for, (my sample worked for gifs). Unfortunately I don't know that as it needs to work for every file and folder on the system that contains a subfolder called .svn. So with a week of reading I have come to the decision that the only real way around this is to override the QLThumbnailImageCreate function that finder calls and replace it with my own if I find a .svn or call the original if not. However if this is the only route I have not been able to get any code to work that will replace the function with my own.
    If any one can show me an example of switching that function, or has an alternative solution. Or knows the LSItemContentTypes type that means my plugin will fire for every single file, then I would be very happy. I've spent no more than 2 days getting this to work on windows and linux, but I've spent soooo many hours on OSX. Any help would be great.

    DanUK wrote:
    Thanks for your reply etresoft. I know it definitely is possible because the application dropbox does it.
    I'm not so sure. People working on the SC Plugin SVN program have been trying to do that for years. I don't know if they have ever gotten it to work.
    But unfortunately its not open source so I can find out how they did it. The only other way I can do it is to monitor file system changes and then set a custom icon. But this has many draw backs. such as custom icons are persistant and will remain even when my software has been uninstalled.
    I think you should really look into using labels. An SVN/CVS user probably isn't going to be using icon view anyway. Labels will be far more useful in real life. Custom icons are just a gimmick.
    I using QT Creator to write the software so if you fancy a go I can share the project with you.
    Perhaps we should stick to our respective SCM programs. I'm not a fan of QT either

  • I have MAC OSX 10.5.8 and need to install adobe illustrator. I checked the compatibility and found that CS5 will work.Can any one help where i can find it. The trail version is fine with me.

    I have MAC OSX 10.5.8 and need to install adobe illustrator. I checked the compatibility and found that CS5 will work.Can any one help where i can find it. The trail version is fine with me as i just have to use it for couple of days till i get my mac book back from service. Can any one help me on this.

    You are welcome, ameronweb.
    To elaborate a bit, you may come across offers of a new/unopened/unregistered version, which is the simplest case (you would need a guarantee). Other cases require much detailed information (and a guarantee).
    If upgrading to 10.6.8 or higher is an option, you could use CS6.

  • I accidentally set up my new ipad in itunes under the name of my existing ipad and need to set it up as a new device. Help. I cannot find a way to start fresh.

    I accidentally set up my new ipad in itunes under the name of my existing ipad and need to set it up as a new device. Help. I cannot find a way to start fresh.

    That's probably not a good idea to try to share apps since you will have to switch ID's each time you update apps and sync apps from iTunes.
    And technically - according to Apple's terms - you cannot share apps using different ID's. You can actually lock yourself out of an ID for 90 days if you switch ID's and if you associate the iPad with another ID.
    The bold type is a copy and paste from the site that I referenced below.
    When you turn on iTunes Match or Automatic Downloads, or when you download past purchases on an iOS device or computer, that device or computer becomes associated with your Apple ID. This article describes how to manage these associations.
    http://support.apple.com/kb/ht4627

Maybe you are looking for

  • To calculate difference  between vendor assay and quality assay

    Hi experts, i am doing a report on raw material purity analysis.i want to calculate differance of vendor assay and quality assay which is in %age.So please tell me to calculate differance using split operation. Thanks

  • Help with Display, it will not rotate/orient to landscape

    I have not dropped my phone or damaged it in any way. I have tried resetting it and still nothing. Yesterday night it was able to rotate and orient itself to landscape view just fine. Today, nothing. Does anyone know how to troubleshoot this? I am cl

  • Problem in resizing

    Hello all: I have the following problem: I'm doing a web site for my company based in resizing blocs, you can see it in the following address: http://www.grupodream.com/nuevaweb/inicio.html To see the problem you have to go in "el grupo", then "Dream

  • Javah error java.lang.Object not found

    Hi guys- I'm trying to run a javah command to generate a .h file... I'm using windows2000 & jdk1.1.8... when I run the command from DOS prompt I keep getting the same eror as java.lang.Object not found: aborting.. I've checked all the classpath and i

  • Making connect against SID high available

    Hi Forum, is there any way to make applications that use host/port/SID to connect to the database high available? The background of my question is that we have a legacy application that does not support to connect via servicename to our RAC database.