* Florian Lohoff [Wed, 01 Mar 2006 11:17:39 +0100]:

> Hi,

Hi,

> after scanning the collection i have now duplicate entrys for all
> titles. I tried deleteing the collection.db and rescanning. No success.

  Hmm. My best guess before forwarding upstream, and since no other user
  has reported this, is that amaroK is somehow accessing your files via
  two paths. 

  Can you check, in the Collection, what does "Location" say in the
  "Edit track information" dialog for both instances of a duplicate
  file?

  You can also use the attached script (apt-get install libsqlite3-ruby1.8
  first) to print the contents of your amaroK collection.

  Cheers,

-- 
Adeodato Simó                                     dato at net.com.org.es
Debian Developer                                  adeodato at debian.org
 
                            Listening to: María del Monte - Pasa la vida
#! /usr/bin/ruby

require 'sqlite3'

db = ARGV.first || (ENV['HOME'] + "/.kde/share/apps/amarok/collection.db")
db = SQLite3::Database.new(db)

db.execute("select * from tags") do |row|
    puts row[0]
end

Reply via email to