Announcement

Collapse
No announcement yet.

audiothumbs doesn't work

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    audiothumbs doesn't work

    i dont no why, but audiothumbs no show pictures in my collection music, but kid3 show pictures also actived dolphin configuration audiothumbs but no show nothing.
    excuse my english. thamks

    #2
    Re: audiothumbs doesn't work

    i haven't found an explanation cause i just "now" can see mp3 cover art, and not flac files, anybody can help please?

    Comment


      #3
      Re: audiothumbs doesn't work

      IF

      If you mean this:
      a thumbnailer for the audio file art

      Plugin for KDE file managers (Dolphin and Konqueror) to
      preview cover arts embedded in Audio (MP3, FLAC) file tags
      as thumbnails.

      http://www.kde-apps.org/content/show...content=114885
      Submitted: Nov 4 2009
      Updated: Nov 4 2009

      [img width=400 height=288]http://img825.imageshack.us/img825/8572/flacaudio.jpg[/img]


      audio/flac != audio/x-flac

      Earlier - (Ubuntu 10.10) Mime type for the flac is /1/:
      Code:
      mimetype -b /media/sda5/tmp/Lakka.flac
      audio/x-flac
      [img width=400 height=187]http://img855.imageshack.us/img855/399/flacbefore.png[/img]


      Now - (Ubuntu 11.04) mime type for the flac is:
      Code:
      mimetype -b /media/sda5/tmp/Lakka.flac
      audio/flac
      [img width=400 height=237]http://img714.imageshack.us/img714/606/flacnow.png[/img]


      Fix

      The AudioThumbs is looking the audio/x-flac. You could edit the mime types. System Settings > File Associations - ! I didn't try this !


      Patching the AudioThumbs:

      AudioThumbs.cpp., line 85 -
      Changing:
      Code:
        else if (type->name() == "audio/x-flac"){
      to
      Code:
        else if (type->name() == "audio/flac"){
      AudioThumbs.desktop, line 6 -
      Changing:
      Code:
      MimeType=audio/mpeg;audio/x-flac;
      to
      Code:
      MimeType=audio/mpeg;audio/flac;

      Building, installing.... flack thumbnails are working.

      [img width=400 height=241]http://img251.imageshack.us/img251/134/xflacaudio.png[/img]




      /1/ man mimetype
      MIMETYPE(1p) User Contributed Perl Documentation MIMETYPE(1p)

      NAME
      mimetype - Determine file type

      SYNOPSIS
      mimetype [options] [-] files

      DESCRIPTION
      This script tries to determine the mime type of a file using the Shared MIME-info database. It is intended
      as a kind of file(1) work-alike, but uses mimetypes instead of descriptions.

      If one symlinks the file command to mimetype it will behave a little more compatible, see "--file-compat".
      Commandline options to specify alternative magic files are not implemented the same because of the
      conflicting data formats. Also the wording of the descriptions will differ.

      For naming switches I followed the manpage of file(1) version 4.02 when possible. They seem to differ
      completely from the spec in the 'utilities' chapter of IEEE Std 1003.1-2001 (POSIX).
      Attached Files
      Before you edit, BACKUP !

      Why there are dead links ?
      1. Thread: Please explain how to access old kubuntu forum posts
      2. Thread: Lost Information

      Comment


        #4
        Re: audiothumbs doesn't work

        thanks Rog, i understood already, but i have a problem, i don't know install it, please could you make a deb file for this..... or make a update, i have your repositories installed in my system.
        thank you very much...

        Comment


          #5
          Re: audiothumbs doesn't work

          thank you very much for update
          Now i can see my flac cover art.
          thanks...

          Comment

          Working...
          X