答案 0 :(得分:1)
您可以更改音频播放器的速度。假设您知道BPM是60,现在您想要在90时播放它,您只需要通过使用以下代码将播放速度提高1.5倍
let audioP = try! AVAudioPlayer(contentsOf: URL(fileURLWithPath: selectedPath), fileTypeHint: "caf")
audioP.enableRate = true
audioP.prepareToPlay()
audioP.rate = 1.5// Change your rate here
audioP.play()