*Pitch tracking* is the process of finding the dominant frequency of an audio signal.
2
votes
1answer
61 views
Convert music wav file to text symbols
I want to give an audio wav file(instrumental - Violin etc) as input and I want to detect all the frequencies tones and to get updated in text sequences in order they have been played. I think I ...
15
votes
3answers
417 views
How to convert a pitch track from a melody extraction algorithm to a humming like audio signal
As part of a fun-at-home-research-project, I am trying to find a way to reduce/convert a song to a humming like audio signal (the underlying melody that we humans perceive when we listen to a song). ...
1
vote
0answers
83 views
Pitch recognition games in the browser
I'd really like to develop some games and exercises that run in the browser and use pitch detection to listen with the microphone and award points for correct answers.
Is this in the realms of ...
0
votes
0answers
66 views
Elliptic filters for android
I need to implement a low pass elliptic filter for a pitch detection algorithm i'm trying to develop. are there any libraries out there that can be of any use here
6
votes
4answers
2k views
FFT on iPhone to ignore background noise and find lower pitches
I have implemented Demetri's Pitch Detector project for the iPhone and hitting up against two problems. 1) any sort of background noise sends the frequency reading bananas and 2) lower frequency ...
0
votes
2answers
3k views
Calculating frequencies from .mp3 or .wav files?
I'm trying to do some note recognition on mp3 or wav files.
The problem is: How do I use the FFT on the files?
I prefer Java solutions, but I'm up for suggestions.
2
votes
5answers
2k views
Software to convert audio to MIDI
Does any one know if there is good software to perform conversion from (wave or mp3 or other known format) to MIDI?
I understand that conversion from audio file to MIDI is a very complex process. I'm ...
8
votes
5answers
1k views
Music Transcription of Wav files in Java
I have project about music transcription using Java, the thing is,, I have created an applet that records sound and saves it into a WAV file, the player should only play the piece he/she would like to ...
0
votes
1answer
187 views
How can I reliably evaluate the performance of pitch tracking algorithms on an Android device?
Ok, I realise that the question is vague so I will supply some context, and perhaps I will receive some context related answers.
I am conducting a final year project as part of my BSc Computer ...
2
votes
1answer
2k views
FFT pitch detection for guitar string
I have simply pitch detection. Input (microphone) data are passed to fft routine, then I'm looking for a pitch with maximum value It means:
Max(pow(data[i].getRe(), 2) + pow(data[i].getIm(), 2)) for ...
21
votes
4answers
4k views
Guitar Chord Recognition Algorithm?
Whats a good digital signal processing algorithm that is good on guitar chords? Since Fast Fourier Transform I think only is accurate on single notes played on the guitar but not notes that are played ...
3
votes
1answer
988 views
Peak detection in Performous code
I was looking to implement voice pitch detection in iphone using HPS method. But the detected tones are not very accurate. Performous does a decent job of pitch detection.
I looked through the code ...
2
votes
5answers
2k views
Pitch detection using FFT for trumpet
How do i get frequency using FFT? What's the right procedure and codes?
7
votes
3answers
798 views
Pitch detection using neural networks
I am trying to use ANN for pitch detection of musical notes. The network is a simple two-layer MLP, whose inputs are basically a DFT (averaged and logarithmically distributed), and 12 outputs ...
3
votes
4answers
3k views
wav-to-midi conversion
I'm new to this field - but I need to perform a WAV-to-MIDI conversion in java.
Is there a way to know what exactly are the steps involved in WAV-to-MIDI conversion?
I have a very rough idea as in you ...
6
votes
4answers
1k views
Programmatically 'Listening' to Sound (Signal Processing?)
I'm familiar with Computer Vision (Well, know OF it), of which one application can be image recognition, such as Optical Character Recognition, I believe. However, something that I am more interested ...
8
votes
4answers
11k views
Real-time pitch detection using FFT
I'm trying to do real-time pitch detection using C++. I'm testing some code from performous (http://performous.org/), because everything else hasn't worked for me. I know for sure that this works, but ...
17
votes
5answers
5k views
Pitch recognition of musical notes on a smart phone
With limited resources such as slower CPUs, code size and RAM, how best to detect the pitch of a musical note, similar to what an electronic or software tuner would do?
Should I use:
Kiss FFT
FFTW
...
9
votes
9answers
14k views
Real time pitch detection
I'm trying to do real time pitch detection of a users singing, but I'm running into alot of problems. I've tried lots of methods, including FFT (FFT Problem (Returns random results)) and ...
1
vote
4answers
2k views
Autocorrelation returns random results with mic input (using a high pass filter)
Sorry to ask a similar question to the one i asked before (FFT Problem (Returns random results)), but i've looked up pitch detection and autocorrelation and have found some code for pitch detection ...
3
votes
3answers
2k views
Display WAV file pitch
I'm new to the audio world, and I've been assigned a task I'm not sure how to deal with.
I need to display a graph representing the pitch of a WAV file. The WAV file can be polyphonic, and then I need ...
15
votes
7answers
14k views
Real-time Pitch Shifting on the iPhone
I have a children's iPhone application that I am writing and I need to be able to shift the pitch of a sound sample using Core Audio. Does anyone have any example code I could look at where this is ...
14
votes
10answers
7k views
Detecting the fundamental frequency
There's this tech-festival in IIT-Bombay, India, where they're having an event called "Artbots" where we're supposed to design artbots with artistic abilities. I had an idea about a musical robot ...
2
votes
4answers
1k views
Pitch identification in Linux [closed]
Is there any free software tool or combination that allows me to identify the pitch of a recorded singing session?
The idea is to display some kind of graph with the current pitch in a time line ...
14
votes
7answers
9k views
Music - How do you analyse the fundamental frequency of a PCM or WAV sample
I have a sample held in a buffer from DirectX. It's a sample of a note played and captured from an instrument. How do I analyse the frequency of the sample (like a guitar tuner does)? I believe FFT's ...