Tagged Questions
The pitch-tracking tag has no wiki summary.
14
votes
6answers
2k 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
...
13
votes
3answers
2k 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 ...
12
votes
4answers
8k 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 ...
11
votes
8answers
4k 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 ...
10
votes
7answers
5k 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 ...
7
votes
4answers
6k 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 ...
6
votes
4answers
422 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 ...
6
votes
2answers
521 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 ...
5
votes
4answers
926 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 ...
3
votes
1answer
542 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 ...
3
votes
9answers
6k 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 ...
2
votes
3answers
370 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 ...
2
votes
4answers
229 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 ...
2
votes
5answers
889 views
Pitch detection using FFT for trumpet
How do i get frequency using FFT? What's the right procedure and codes?
2
votes
4answers
1k 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 ...
2
votes
3answers
1k 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 ...
2
votes
5answers
753 views
Pitch identification in Linux
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 ...
1
vote
1answer
1k 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 ...
1
vote
4answers
1k 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 ...
0
votes
0answers
173 views
wav to midi open source [closed]
Possible Duplicate:
wav to midi conversion
I'm currently looking at a bunch of research topics and one which piques my interest is that of polyphonic automatic music transcription, ...
0
votes
1answer
101 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 ...
-1
votes
2answers
393 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.