Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
9
votes
4answers
802 views

FFT Inaccuracy for C#

Ive been experimenting with the FFT algorithm. I use NAudio along with a working code of the FFT algorithm from the internet. Based on my observations of the performance, the resulting pitch is ...
9
votes
4answers
3k views

C# Audio - How to time stretch (different tempo, same pitch)

I'm trying to make a winform app in C# (VS2008) that can load an mp3 (other formats would be nice, but mp3 at a minimum) and be able to adjust the playback speed (tempo) without affecting pitch. I ...
8
votes
3answers
760 views

Algorithm to determine fundamental frequency from potential harmonics

I am attempting to extract a fundamental frequency from a sound source. maybe someone is singing A3 into the microphone, so I want to be detecting ~ 110Hz my approach is: FFT 1024 floats use the ...
6
votes
3answers
3k 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 = ...
6
votes
1answer
560 views

Sound Touch in iPhone

Has someone been able to make SoundTouch Audio Processing Library work for iPhone? Simple Xcode Demo would be helpful. I'd just like to change pitch without tempo change.
5
votes
6answers
593 views

Programmatically increase the pitch of an array of audio samples

Hello kind people of the audio computing world, I have an array of samples that respresent a recording. Let us say that it is 5 seconds at 44100Hz. How would I play this back at an increased pitch? ...
4
votes
1answer
443 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 ...
4
votes
1answer
269 views

Cleaning up noisy Cepstrum results

I've been working on a simple frequency detection setup on the iphone. Analyzing in the frequency domain using FFT results has been somewhat unreliable in the presence of harmonics. I was hoping to ...
4
votes
3answers
2k 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.
3
votes
3answers
98 views

Autocorrelation Heuristics for a Tuner

I've implemented a simple autocorrelation routine against some audio samples at a rate of 44100.0 with a block size of 2048. The general formula I am following looks like this: r[k] = a[k] * b[k] = ...
3
votes
1answer
577 views

Android orientation as steering - roll corrupting pitch?

Hi Guys, I am working on a project which includes an Android application which is used for controlling/steering. Speed: When you tilt the phone forward/backwards (pitch) it simulates giving gas and ...
3
votes
1answer
890 views

openal pitch shift

Can anyone tell me why the volume becomes lower when I make the pitch higher in openal? The higher the pitch, the lower the volume..... alSourcef(source, AL_PITCH, 1.2f); alSourcef(source, AL_GAIN, ...
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
1answer
850 views

change the pitch of a wave file in Android?

Can somebody tell me how to change the pitch of a wave file in Android?
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
2answers
227 views

Python Audio Frame Pitch Change

I'm attempting to use pyaudio to make a voice masker. With the way I have it set up right now, the only thing I have to do is input the sound, change the pitch on the fly, and chunk it right back ...
2
votes
1answer
1k views

Pitch problems in landscape mode

I need to read the pitch value (how much the phone is tilted backwards and forwards) both in portrait and landscape modes. using the code bellow in portrait I get my value from value[1] with 0.0 when ...
2
votes
1answer
600 views

Pitch detection and change java

I'm french so I'm sorry if you have trouble to understand some of my sentences. Anyways, I saw in some topics that the pitch could be fetected thanks to the Fourier transform but I didn't really ...
2
votes
3answers
907 views

FFT Algorithm: What goes IN/OUT? (re: real-time pitch detection)

I am attempting to extract pitch data from an audio stream. From what I can see, it looks as though FFT is the best algorithm to use. Rather than digging straight into the math, could someone help ...
2
votes
5answers
2k views

C/C++/Obj-C Real-time algorithm to ascertain Note (not Pitch) from Vocal Input

I want to detect not the pitch, but the pitch class of a sung note. So, whether it is C4 or C5 is not important: they must both be detected as C. Imagine the 12 semitones arranged on a clock ...
2
votes
1answer
255 views

Determining roll angle (up/down) when Android phone is horizontal?

When the Android phone is on its side (horizontal orientation), the Roll represents the tilt, so to speak. When the phone is perpendicular to the ground (looking directly at the screen), the roll ...
2
votes
3answers
986 views

Change the pitch (and speed) of audio during playback in Python

I'm working on a Python program that plays music. One feature will be a slider that the user can drag up or down to change the pitch of the music as it plays. For example, if the pitch is set to 2, ...
2
votes
2answers
437 views

Pitch manipulation of Audio recorded Sounds

I have a challenging task please help Task: Just say something into your iPhone or capture a friend saying something. Then application make it sound even MORE ridiculous with your choice of over a ...
2
votes
3answers
1k views

Is there a ready-made formula to get Pitch/Roll values from iPhone 3GS's Accelerometer's X/Y/Z?

Just started to realize an augmented reality based project, got GPS location, heading, and the two missing variable to manipulate virtual camera is Pitch/Roll. I'm wondering if there is a ready-made ...
2
votes
1answer
948 views

OpenAl pitch values for particular musical notes in an octave

I have an OpenAl sound engine on my iPhone app. When I play a sound that I have loaded, I can control it's pitch. In OpenAl a pitch set to 1.0 has no effect. If you double it to 2.0, it plays the ...
2
votes
6answers
885 views

what is a good programming language for music software?

i want to write a music software that can play music, can detect pitch of the sound taken from the computer's microphone(with an algorithm that uses sound filters to filter out frequencies), and ...
2
votes
2answers
1k views

PCM Data Pitch Change in C#

I have a program that downloads PCM data from a Web Server, which it uses later to play through a standard PCM player. I want to be able to allow users to change the pitch of the PCM data while its ...
1
vote
1answer
43 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 ...
1
vote
1answer
82 views

C++ Live Sound Control

In C++ compiled with Visual Studio 2008 or 2010, am looking for a way to play a note on an instrument and then be able to change the pitch of that note (i.e. from a C to a D), its volume, and even the ...
1
vote
1answer
161 views

OpenGl SuperBible implementing camera Pitch (Looking up and down)

I'm having some trouble implementing looking up and down using the mouse in openGl, I can get the camera to rotate about the x-axis, however when i move forward, i starting going up at an angle, this ...
1
vote
1answer
171 views

The bing map control for wp7 has two properties called Pitch and Heading, but setting those two properties does not seem to work

The bing map control for wp7 has two properties called Pitch and Heading, but setting those two properties does not seem to work. I expect them to rotate the map. Am I missing anything? Is there ...
1
vote
0answers
77 views

audioqueue kAudioQueueParam_Pitch

The documentation for Audio Queue Services under OS 10.6 now includes a pitch parameter: kAudioQueueParam_Pitch The number of cents to pitch-shift the audio queue’s playback, in the range ...
1
vote
2answers
645 views

Calculating yaw/pitch/roll

I have three GPS antennae on a boat. They are in fixed xyz positions relative to each other. For example: Ant1 at (0,0,0) Ant2 at (0,5,0) Ant3 at (5,2,0) I want to make a program that will ...
1
vote
3answers
1k views

Cepstral Analysis for pitch detection

I'm looking to extract pitches from a sound signal. Someone on IRC just explain to me how taking a double FFT achieves this. Specifically: take FFT take log of square of absolute value (can be ...
1
vote
2answers
64 views

'Correct' term for.. upwards moving menu?

Dropdown menu. But ours open upward - 'popup', as in 'popup menu' has proved oddly confusing to some of our business oriented folk. So we tried throwing in 'vertical menu' and then.. this was a ...
1
vote
1answer
1k views

iOS: Pitch Shifting & Piping output from OpenAL into a buffer

I have recently spotted that it is possible in iOS to use OpenAL to pitch shift. I am looking at Hollance's sound bank player. it takes in 15 or so piano notes spattered through the range, and plays ...
1
vote
1answer
610 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 ...
1
vote
1answer
663 views

Calculating audio pitch in MATLAB?

Yesterday I finalised the code for detecting the audio energy of a track displayed over time, which I will eventually use as part of my audio thumbnailing project. However I would also like a method ...
1
vote
1answer
174 views

RockBand-like voice app for PC/OSX / Real time pitch display software

I played Rock Band 2 for the first time a little while ago (at Notacon). One thing I enjoyed about it was getting real-time feedback about my singing. I think it'd be neat to have something like that ...
1
vote
2answers
335 views

Is pitch and speed the same thing in audio programming context?

Pitch means "perceived frequency". Nice. But when I make pitch very low in OpenAL, sound plays a lot of times longer. If I make it very high, sound plays very short but with high frequency. For me, ...
1
vote
1answer
533 views

Playing sounds with python and changing their tone during playback?

Is there a way to do this? Also, I need this to work with pygame, since I want audio in my game. I'm asking this because I didn't see any tone change function in pygame.. Anyone knows? Update: I ...
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
1answer
65 views

IOS - angle between ipad and pitch-roll-layer

i used core motion in IOS to calculate the angle between ipad and pitch-roll-layer, but i didnt know how i can calculate the angle between ipad-layer and pitch-roll-layer from yaw-, pitch- and ...
0
votes
0answers
50 views

Make my Xna camera tilt (up/down rotation)

I'm writing my own Camera class and I'm having trouble fixing my pitch rotation (or tilting as the wikipedia photography page refers to it). Long story short, this is what I currently have: public ...
0
votes
1answer
79 views

Real time speech transformation in MATLAB

Is it possible to transform speech (pitch/formant shift) in (near) real-time using MATLAB? How can it be done? If not, what should I use to do that? I need to get a input from the microphone, ...
0
votes
2answers
83 views

CMAttitude roll and pitch calculation

The question itself is simple. When using the CMDeviceMotion motion it contains an object named attitude of type CMAttitude which contains roll and pitch. Roll and pitch describe the rotation of the ...
0
votes
2answers
95 views

CoreAudio tempo change (iOS)

I'm very new to audio programming, but I know this must be possible. (This is an iOS/iPhone related question). How would I go about changing the tempo of a loaded audio file without changing the ...
0
votes
1answer
93 views

FFT Pitch Detection - Melody Extraction

I am creating a pitch detection program that extracts the fundamental frequency from the power spectrum obtained from the FFT of a frame. This is what I have so far: divide input audio signal into ...
0
votes
1answer
60 views

How to playback piano chords with an android?

I am looking for a way to play chords (4 notes together), threw audiotrack. What is the best way to do this? I consider about starting from a single sampled note, applying pitch filters to it. Is ...

1 2