I want to control the playback speed of audio in AVAudioplayer. Is this possible? If so, how would you do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
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. |
||||
|
|
|
Now it is possible to change the speed of sound. here is my sample code:
you set "enableRate" to YES and you can change it. see more docs |
|||
|
|
|
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. |
||||
|
|