I'm trying to play an audio file and pitching it half down, but I would also like that the lenght of the audio does not change.
[[SimpleAudioEngine sharedEngine] playEffect:@"sample.wav" pitch:0.5 pan:0 gain:1];
This doesn't help because audio file is playing longer and the effect is not what I want.
How can I pitch audio file without affecting it's lenght?