GNOME Bugzilla – Bug 556074
Should check for GST_TAG_PREVIEW_IMAGE when thumbnailing audio
Last modified: 2008-10-14 03:25:32 UTC
bacon_video_widget_get_best_image() checks for the GST_TAG_IMAGE GStreamer tag, but not GST_TAG_PREVIEW_IMAGE. This means that some file types are not thumbnailed even though GStreamer supports them.
Created attachment 120481 [details] [review] If no IMAGE tag can be found, check for PREVIEW_IMAGE
I think your patch is reverted, and probably not _actually_ checking for PREVIEW_IMAGE at all...
Created attachment 120482 [details] [review] If no IMAGE tag can be found, check for PREVIEW_IMAGE > I think your patch is reverted, and probably not _actually_ checking for PREVIEW_IMAGE at all... Oh, yes, it would be good if I could diff against the correct files.
Looks fine to me, please commit to trunk and gnome-2-24.
I don't have commit permission, sorry.
2008-10-13 Bastien Nocera <hadess@hadess.net> * src/backend/bacon-video-widget-gst-0.10.c (bacon_video_widget_get_best_image): Patch from John Millikin <jmillikin@gmail.com> to also look for the GST_TAG_PREVIEW_IMAGE tag when trying to get audio file covers (Closes: #556074)
Looks like I need to eat a bit of crow. The issue that the patch "solved" for me has re-surfaced. While poking around in the thumbnailer, I noticed that there is already a check for PREVIEW_IMAGE in ``bvw_get_metadata()``. Still poking around to determine the true cause, but the extra check in the patch is merely dead weight. Apologies for wasting your time, Mr. Nocera.