我正在使用twilio创建一个手机应用程序。我有一个语音邮件的链接,我正在尝试从表视图中的控件播放语音邮件。由于我以前从未流式传输过音频,我决定简化一切,只尝试从任何URL流式传输音频。我尝试流式传输音频的URL是"http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8".
我试过使用Apples Developer页面上的示例,但我想我只是不理解文档。
这是我目前正在尝试的,但我遇到了一个错误。
NSURL *url = [NSURL URLWithString:@"http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8"];
NSError *error;
self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
我得到了这个错误。。。
Error Domain=NSOSStatusErrorDomain Code=2003334207 "The operation couldn’t be completed. (OSStatus error 2003334207.)"
我是朝着正确的方向前进,还是应该做一些不同的事情。我发现了很多不同的线程,但我看到的没有一个能让我播放音频。如果能朝着正确的方向推进,我们将不胜感激。
我也尝试过使用AVPlayer。。。
NSURL *url = [NSURL URLWithString:@"http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8"];
self.player = [[AVPlayer alloc] initWithURL:url];
[self.player play];
并且什么也没发生
试试这个
@property (nonatomic,strong) AVPlayer *audioStremarPlayer;
NSURL *url = [NSURL URLWithString:@"your url"];
// stremar player
AVPlayer *player = [[AVPlayer alloc]initWithURL:url];
self.audioStremarPlayer= player;
[self.audioStremarPlayer addObserver:self forKeyPath:@"status" options:0 context:nil];
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if (object == self.audioStremarPlayer && [keyPath isEqualToString:@"status"]) {
if (self.audioStremarPlayer.status == AVPlayerStatusFailed)
{
// //NSLog(@"AVPlayer Failed");
}
else if (self.audioStremarPlayer.status == AVPlayerStatusReadyToPlay)
{
[self.audioStremarPlayer play];
}
else if (self.audioStremarPlayer.status == AVPlayerItemStatusUnknown)
{
// //NSLog(@"AVPlayer Unknown");
}
}
}