3

我正在使用 Monotouch 示例从远程服务器 (https://github.com/xamarin/monotouch-samples/tree/master/StreamingAudio) 播放音频文件,我需要实现快进和快退功能。

StreamingPlayback 类实现了 OutputAudioQueue 播放和暂停功能。我曾在 Objective-C 中使用过 AVAudioPlayer,并且可以执行以下操作:

-(void) rewind()   
{   
         myPlayer.currentTime -= 10.0;   
}

但是对于 OutputAudioQueue,CurrentTime 是只读的,在我看来,没有办法用它来实现倒带/快进。有人对此有解决方案,或者有更好的方法来播放我的远程音频文件吗?

谢谢

4

0 回答 0