Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Not New (Score 4, Informative) 213

This is known as a perceptual hash. We have a perceptual audio hash in pHash, my open source software project that will tell you how similar two media files are to each other. It also features an indexing system to find the best matches from a sample audio clip, a la Shazam. These algorithms are not new by any means, although this patent goes a bit further than simply matching audio samples.

Comment Update your Firefox search bar (Score 1) 288

To take advantage of the change in your Firefox search bar on Linux, edit the ~/.mozilla/firefox/xxxxxx.default/search.json file and change all URL references to Google to "https" where xxxxxx is the random string created by Firefox. I assume it's similar for other operating systems.

While this is a step i nthe right direction, I believe only the results of your search are encrypted, not the search string itself. Perhaps Google should make the search a POST and not a GET. That should solve the problem of your search string appearing in the URL.

Comment Hashing (Score 4, Insightful) 113

Their SHA1 hashing method will not be sufficient to detect most copyright infringements. Even one bit change in a file will result in a completely different SHA1 hash. I am the creator of pHash, which is well suited for this type of similarity search. The hashes do not need to be identical in order to detect duplicate or similar files, and similar files will have hashes that are "close" to one another. This is really what they should be using.

Comment pHash (Score 5, Interesting) 116

This seems like a good time to pump my own open source project: pHash. pHash is a perceptual hashing library that computes hashes for audio, video and image files, with text and PDF hashing coming soon. We use an algorithm similar to YouTube's audio fingerprinting method but we do not only take into account the first 30 seconds. Although, it's impossible to tell from this basic test whether their algorithm truly only looks at the first 30 seconds, or if the algorithm considers them to be different audio files. If the song is only 1 minute in duration, and 30 seconds is blank, is that really the same audio file as the full 1 minute version? At some point the audio files are not really the same anymore, although the perceptual hashes should be somewhat close to each other. Please give pHash a try. We could use some feedback from the OSS community and would appreciate it greatly.

Slashdot Top Deals

So you think that money is the root of all evil. Have you ever asked what is the root of money? -- Ayn Rand

Working...