Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to control the playback speed of audio in AVAudioplayer. Is this possible? If so, how would you do it?

share|improve this question
Look into the API of AVAudioplayer. – Zaki Feb 28 '10 at 9:42

4 Answers

Looks like it works for iOS5 - docs and look at rate.

thanks,

share|improve this answer

You can't. You can only change the volume not the speed of playback.

I think to do that, you will have to use the much lower level Audio Queue APIs and manipulate the audio stream manually to apply that effect.

share|improve this answer

Now it is possible to change the speed of sound.

here is my sample code:

player = [[AVAudioPlayer alloc] initWithContentsOfURL:
                  [NSURL fileURLWithPath:path] error:&err];
        player.volume = 0.4f;
        player.enableRate=YES;
        [player prepareToPlay];
        [player setNumberOfLoops:0];
        player.rate=2.0f;
        [player play];

you set "enableRate" to YES and you can change it.

see more docs

share|improve this answer

AVAudioPlayer does not support playback speed setting. Audio Queue Services are quite a pain to use, so that you might want to try OpenAL. See the sound engine from Cocos2D or Finch for examples of how to wrap OpenAL in Objective-C.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.