From 4c78dfa326ffac0ad1a71b7d2c1151aae749046a Mon Sep 17 00:00:00 2001 From: wsieroci Date: Thu, 13 Jun 2013 10:44:27 +0200 Subject: [PATCH 1/2] Update README --- README | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README b/README index e69de29..0c29126 100644 --- a/README +++ b/README @@ -0,0 +1,5 @@ +Roy van Rijn has written wonderful post about Shazam algorithm and how to implement it on our own. To do this he placed many chunks of his project source code, but he did not upload all source code of his application because as he stated: + +The Shazam patent holders lawyers are sending me emails to stop me from releasing the code and removing this blogpost. + +It occurred that core of this algorithm is very simple. I have analyzed his post and as weekend project I have written simple Proof-Of-Concept application which outputs its findings to console. It gives surprisingly correct answers. For now I have tested 10 different mp3 audio files and this application was able to recognize each of them. Application is learning basing on path to mp3 file on your local disk or http stream of mp3 file from any source and recognize by sound from microphone. From 3028b6147dcd09f6b1bd418b8b0d2bacd7c8afc3 Mon Sep 17 00:00:00 2001 From: wiktor Date: Wed, 16 Mar 2016 19:51:39 -0700 Subject: [PATCH 2/2] New README --- README => README.md | 2 ++ 1 file changed, 2 insertions(+) rename README => README.md (97%) diff --git a/README b/README.md similarity index 97% rename from README rename to README.md index 0c29126..90b03e7 100644 --- a/README +++ b/README.md @@ -1,3 +1,5 @@ +## Shazam in Java + Roy van Rijn has written wonderful post about Shazam algorithm and how to implement it on our own. To do this he placed many chunks of his project source code, but he did not upload all source code of his application because as he stated: The Shazam patent holders lawyers are sending me emails to stop me from releasing the code and removing this blogpost.