How can I Compare 2 Audio Files Programmatically?

后端 未结 7 1673
误落风尘
误落风尘 2020-12-12 17:18

I want to compare 2 audio files programmatically. For example: I have a sound file in my iPhone app, and then I record another one. I want to check if the existing sound mat

7条回答
  •  遥遥无期
    2020-12-12 18:02

    Have a server doing audio fingerprinting computation that is not suitable for mobile device anyway. And then your mobile app uploads your files to the server and gets the analysis result for display. So I don't think programming language implementing it matters much. Following are a few AF implementations.

    Java: http://www.redcode.nl/blog/2010/06/creating-shazam-in-java/

    VC++: http://code.google.com/p/musicip-libofa/

    c#: http://www.codeproject.com/KB/WPF/duplicates.aspx

提交回复
热议问题