audio-processing

Detect beat and play (wav) file in a synchronised manner

情到浓时终转凉″ 提交于 2019-11-29 23:08:01
问题 I am trying my hands at Audio Processing in python with this Beat Detection algorithm. I have implemented the first (non-optimized version) from the aforementioned article. While it prints some results, I have no way to detect whether it works with some accuracy or not as I do not know how to play sound with it. Currently, I am using Popen to asynchronously start my media player with the song before going into the computation loop, but I am not sure if this strategy works and is giving

Music Recognition and Signal Processing

拥有回忆 提交于 2019-11-29 20:01:54
I want to build something similar to Tunatic or Midomi (try them out if you're not sure what they do) and I'm wondering what algorithms I'd have to use; The idea I have about the workings of such applications is something like this: have a big database with several songs for each song in 1. reduce quality / bit-rate (to 64kbps for instance) and calculate the sound "hash" have the sound / excerpt of the music you want to identify for the song in 3. reduce quality / bit-rate (again to 64kbps) and calculate sound "hash" if 4. sound hash is in any of the 2. sound hashes return the matched music I

Convert audio to text

做~自己de王妃 提交于 2019-11-28 18:27:26
I just want to know if there is any build in libraries or external libraries in Java or C# that allow me to take an audio file and parse it and extract the text from it. I need to make an application to do so, but I don't know from where I can start. Here are some of your options: Microsoft Speech Lumenvox Dragon naturally speaking sphinx4 Here is a complete example using C# and System.Speech The code can be divided into 2 main parts: configuring the SpeechRecognitionEngine object (and its required elements) handling the SpeechRecognized and SpeechHypothesized events. Step 1: Configuring the

How can I Compare 2 Audio Files Programmatically?

我的未来我决定 提交于 2019-11-28 16:13:27
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 matches the recorded sound or not ( - similar to voice recognition). How can I accomplish this? That's called Audio Fingerprinting. There exist some open source projects from which you can get some ideas. Take a look here: Audio Fingerprint - MusicBrainz . 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

Music Recognition and Signal Processing

…衆ロ難τιáo~ 提交于 2019-11-28 15:53:49
问题 I want to build something similar to Tunatic or Midomi (try them out if you're not sure what they do) and I'm wondering what algorithms I'd have to use; The idea I have about the workings of such applications is something like this: have a big database with several songs for each song in 1. reduce quality / bit-rate (to 64kbps for instance) and calculate the sound "hash" have the sound / excerpt of the music you want to identify for the song in 3. reduce quality / bit-rate (again to 64kbps)

Sound sample recognition library/code

妖精的绣舞 提交于 2019-11-28 15:25:03
问题 I don't want sound-to-text software. What I need is the following: I'll record multiple (say 50+) audio streams (recordings of radio stations) from that recordings, I'll mark interesting audio clips - their length ranges from 2 to 60 seconds - there will be few thousands of such audio clips library should be able to find other instances of same audio clips from recorded sound streams confidence factor should be reported to used and additional input provided so the recognition could perform

Bpm audio detection Library [closed]

匆匆过客 提交于 2019-11-28 04:25:16
I'm looking for a library that simplify tempo/bpm audio detection. Something similar to this http://adionsoft.net/bpm/ , but to use on *NIX machines. Any language, but preference goes to php, perl, python. Mixxx uses the BPMDetect class from the SoundTouch library for BPM Detection. There is also another opensource library called BPMDj which is harder to use but is more accurate. I personally wouldn't rely on either though. Then again I am a hobbyist DJ so I tend to rely more on my ears. EDIT There is a much better OSS library called aubio . It can also do beat detection and onset detection.

Convert audio to text

自闭症网瘾萝莉.ら 提交于 2019-11-27 11:21:00
问题 I just want to know if there is any build in libraries or external libraries in Java or C# that allow me to take an audio file and parse it and extract the text from it. I need to make an application to do so, but I don't know from where I can start. 回答1: Here are some of your options: Microsoft Speech Lumenvox Dragon naturally speaking sphinx4 回答2: Here is a complete example using C# and System.Speech The code can be divided into 2 main parts: configuring the SpeechRecognitionEngine object

How can I Compare 2 Audio Files Programmatically?

三世轮回 提交于 2019-11-27 09:37:15
问题 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 matches the recorded sound or not ( - similar to voice recognition). How can I accomplish this? 回答1: That's called Audio Fingerprinting. There exist some open source projects from which you can get some ideas. Take a look here: Audio Fingerprint - MusicBrainz. 回答2: Have a server doing audio fingerprinting computation that is

Bpm audio detection Library [closed]

▼魔方 西西 提交于 2019-11-27 00:24:15
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I'm looking for a library that simplify tempo/bpm audio detection. Something similar to this http://adionsoft.net/bpm/ , but to use on