According to these docs, I can change certain settings for AVAudioPlayer, including AVAudioTimePitchAlgorithmVarispeed setting. How would I set this value? Do I nee
AVAudioTimePitchAlgorithmVarispeed
If no required use of AVAudioPlayer, you can use AVPlayer
AVPlayerItem *playerItem = [AVPlayerItem playerItemWithURL:url]; playerItem.audioTimePitchAlgorithm = AVAudioTimePitchAlgorithmTimeDomain; AVPlayer *player = [AVPlayer playerWithPlayerItem:playerItem]; [player play];