Search:

Type: Posts; User: scrawl; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.10 seconds.

  1. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    TypeError: Cannot create a consistent method resolution
    order (MRO) for bases ImplementorIface, Orientable, Buildable
    **

    It's a bug in PyGTK or PyGObject, google it. As far as I know there is no...
  2. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Are you sure you typed everything in correctly? I've attached the modified file here. If it still doesn't work, start Rhythmbox in the console and post the output!
  3. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Try to open __init__.py of the plugin and replace

    return float(intersection*2) / float(union)
    with


    if not float(union) == 0:
    return float(intersection*2) / float(union)
    else:
    return...
  4. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    It's a good idea. Though there is no release of the plugin planned for the near future. I've added it to the ToDo list.
  5. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Thats strange, I dont get the error. Can you try again?
  6. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Hey guys,

    I just uploaded a minor update. Changelog:
    - Duplicate check moved to the background so it doesn't block the UI
    - Stripped additional common strings before comparing (original mix,...
  7. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    You can press Ctrl+H in the file manager, then you will see the hidden folders (including .gnome2 ), then you can navigate to .gnome2/rhythmbox/plugins or create the rhythmbox/plugins folders if they...
  8. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Please try a newer version, its fixed there: http://scrawl.bplaced.net/duplicate-source.tar.gz
  9. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    This should be fixed in the newest release (- Fixed #579911 (importing / removing multiple files at once triggers duplicate check several times), did you already have that one or did you just edit...
  10. [all variants] Re: Removing duplicated songs in Rhythmbox database.

    If someone still needs this, you can also try my rhythmbox plugin for deleting duplicates: http://ubuntuforums.org/showthread.php?t=1078839&page=4
  11. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Latest version pushed to bzr. Changelog:

    - Fixed #579902 (Problem when using show bothh option and more than 2 duplicates)
    - Fixed #579911 (importing multiple files at once triggers duplicate...
  12. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Yes, I'm notified for bugs on launchpad. It seems your patch does the same as this one:


    # Make sure the entry is not existing already
    if self.db.entry_lookup_by_location(symlink_file_rb)...
  13. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Thats strange. Are you sure you are not trying to delete a file that doesnt exist anymore? Can you post the console output of rhythmbox -D duplicate-source when it crashes?

    Additionally,...
  14. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Preferences dialog is ready (and working!!!) :)

    Download: http://scrawl.bplaced.net/duplicate-source.tar.gz


    The module name should still be duplicate-source, cause none of the rhythmbox...
  15. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Thanks for pointing this out, it was indeed a problem with the listeners for entry-added / entry-deleted signals, they were not cleaned on deactivation. It's fixed in the bzr branch, which is, by the...
  16. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Thats impossible, because I don't really tell Rhythmbox to hide it at that part, I just set the property "hide when empty". So even if the order gets scraped somehow, the source will always be...
  17. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Here is a mockup for the preferences dialog, anything to add? (The Combobox has 2 entries, Remove from library and move to trash)
  18. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    What do you mean? Some kind of automatic deletion when a duplicate is found? That shouldnt be hard to implement.


    The plugin does this too, furthermore the order is like this
    * Quality
    *...
  19. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Hey, thats actually a great idea :p I was really wondering how to implement that "show all versions" thingy, but this seems to be a very good solution.
  20. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    The solution is much simpler: Don't show the properties dialog of the entry in the duplicate source, but of the entry in the library source. /Edit: patched, it works now.


    Yeah, I was thinking of...
  21. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Thanks for your effort! I polished it up a bit so its now included. They were some problems though, the "Remove from library" and "Move to trash" didnt work anymore, because they relied on the...
  22. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Hi everyone,

    I am happy to announce a very early version of the plugin. Currently it doesn't give many options, it just "works" (hopefully ;) )

    Download here:...
  23. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Well, I am aware that the search algorithm of the previous plugin was really slow. Comparing everything to everything gets even slower on large libraries, with the library I had back then it was no...
  24. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Thanks, thats actually a big help for me since I don't know anything of the Rhythmbox Source API yet.

    My suggestion for the interface would be the following
    - on first start of the plugin or...
  25. [ubuntu] Re: Rhythmbox plugin: A method to sift and remove duplicate songs?

    Hi mihai007,

    thanks for your criticism. As you might have seen the plugin was rather an experiment than an end user application. Aside from that, I really like your mockups and the idea of packing...
Results 1 to 25 of 40
Page 1 of 2 1 2