假设我有一个持续时间为 10 秒的 AVAudioFile。我想将该文件加载到 AVAudioPCMBuffer 中,但我只想加载在特定秒数/毫秒数或特定 AVAudioFramePosition 之后出现的音频帧。
它看起来不像 AVAudioFile 的 readIntoBuffer 方法给我那种精度,所以我假设我必须在 AVAudioBuffer 级别或更低级别工作?
Best Answer-推荐答案 strong>
您只需要设置 AVAudioFile 的 framePosition阅读前的属性(property)。
关于ios - 从某个时间开始将 AVAudioFile 读入缓冲区,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/46413564/
|