0
votes
0answers
47 views

OpenAL/SFML get pitch value

I've been googling for a while to see if there is any way to retrieve the frequency/pitch of some sound buffer. I know there is alSourcef in OpenAL that changes the pitch of some sound. Basically, I ...
0
votes
1answer
418 views

Android library to get pitch from WAV file

I have a list of sampled data from the WAV file. I would like to pass in these values into a library and get the frequency of the music played in the WAV file. For now, I will have 1 frequency in the ...
0
votes
0answers
559 views

compare two audio file in java

i want to make a project in which i am going to record a user's voice and then compare it with a stored voice. I searched for that and i come up with MFCC and FTT algorithm. but i really don't ...
0
votes
1answer
349 views

Android-Java: Detecting particular notes (by frequency and pitch)

In the most basic question, is it at all possible to detect the notes being played in a particular piano piece using just the Android mic? In the future, the iPad mic if this goes well. To start, I'd ...
1
vote
1answer
380 views

Microphone Pitch/Freq Detection (actionscript 3.0 in particular)

So, I'm trying to detect the average frequency of a sound recorded from the microphone. It can be assumed that this sound will be in mp3 or wav form. My final goal is to do this live (or close ...
2
votes
1answer
272 views

How to calculate the average frequency of an audio recording captured as a ByteArray in Flash?

Keeping it simple for now but assuming i have a ByteArray full of sample data is it possible to calculate the average frequency (thus a pitch) from the entire recording? Is this along the right ...
4
votes
1answer
893 views

Auriotouch, get musical note from frequency FFT

I'm developing a kind of guitar tuner. I have a function that gives me the FFT, and the values of the FFt for each frequency. How do I get the musical note from there? Do I have to chose the highest ...
14
votes
3answers
9k views

Graphing the pitch (frequency) of a sound

I want to plot the pitch of a sound into a graph. Currently I can plot the amplitude. The graph below is created by the data returned by getUnscaledAmplitude(): AudioInputStream audioInputStream = ...
0
votes
2answers
325 views

Music meets DSP: What is the difference between Frequency, Pitch, Tone and Note [closed]

I am working through some DSP, in regard to writing music related software, and am getting confused by terminology. I am starting to wonder whether these entities are inherently confusing / ...
1
vote
1answer
1k views

changing the frequency of a soundfile in android

I try to change the frequency of a single soundfile. I managed to do that in android with the SoundPool thing. But the result sounds really bad. So I stepped about the Fourier Transformation - but I ...
5
votes
6answers
5k views

How to detect sound frequency / pitch on an iPhone?

I'm trying to find a way to detect sound frequency being recorded by iPhone's Microphone. I'd like to detect whether the sound frequency is going up or down.