Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Android application Sound Track is doing some following job.

  • Listen the song/sound track
  • Search the track from server
  • Provide full detail about the track like movie name, album name, singer etc

My question is Which type of mechanism they are using to track a sound/song?

share|improve this question

1 Answer

  • Record a small excerpt of the song using the microphone.
  • Upload it to the server
  • Run a matching algorithm against your excerpt and the precompiled database that you've made containing thousands of songs.
  • Find the best match, and send the result back to the device.
  • Show the information to the user
share|improve this answer
can you provide me such API for sound comparison?? – Chintan Rathod Mar 4 at 13:21
1  
@ChintanRathod Uh, such APIs are rarely open source and available for all to use. You'll have to compile the database of songs and write the comparison code yourself. – Raghav Sood Mar 4 at 13:22
Oh.. then it will be bit complicated task for me. Let me search for that. – Chintan Rathod Mar 4 at 13:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.