Program to find duplicate song files?
June 1, 2006 1:55 PM
Subscribe
Looking for a (preferably freeware) program that will scan multiple hard drives and return duplicate music files based on MD5 checksum or similar method. I am using Windows XP.
I've found plenty of programs that will calc a checksum one at a time, but not in batch mode and none that I have found will match up duplicates based on checksum. I am aware of the Itunes ability to find duplicates but I need something that will find 'true' duplicates regardless of differing tags/filenames etc. and give me back the matched pairs in a list. I only care about doing this with MP3, WMA and M4A files.
posted by mattholomew to computers & internet (6 comments total)
find / -name '*.mp3' -print0|xargs -0 md5sum|sort
You could install Cygwin if you like the idea of doing things like this easily. ;)
posted by kcm at 1:58 PM on June 1, 2006