We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
there is a issue in the validation of duplicated songs, its in the in the init.py on dejavu folder start around line 56.
Change
filenames_to_fingerprint = [] for filename, _ in decoder.find_files(path, extensions): # don't refingerprint already fingerprinted files if decoder.unique_hash(filename) in self.songhashes_set: print "%s already fingerprinted, continuing..." % filename continue filenames_to_fingerprint.append(filename)
by
filenames_to_fingerprint = [] for filename, _ in decoder.find_files(path, extensions): # don't refingerprint already fingerprinted files songHash = decoder.unique_hash(filename) if songHash in self.songhashes_set: print "%s already fingerprinted, continuing..." % filename continue filenames_to_fingerprint.append(filename) self.songhashes_set.add(songHash)
this way it adds the new song hash to the self.songhashes_set and find duplicated songs in the folder.
The text was updated successfully, but these errors were encountered:
seems good suggestion, but nobody can merge it ... :(
Sorry, something went wrong.
No branches or pull requests
there is a issue in the validation of duplicated songs, its in the in the init.py on dejavu folder start around line 56.
Change
by
this way it adds the new song hash to the self.songhashes_set and find duplicated songs in the folder.
The text was updated successfully, but these errors were encountered: