• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iOS - AVPlayer 不为某些 URL 流式传输音频

[复制链接]
菜鸟教程小白 发表于 2022-12-11 18:15:01 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我尝试过从流媒体播放音频。它适用于某些 URL,但对于某些具有某些 URL (http://listen.radionomy.com/almightyradiohindi) 的 URL,即使播放器状态为 = AVPlayerStatusReadyToPlay,它也会失败。如果我将相同的 URL 放在浏览器中不起作用,那么它也不起作用。但我认为播放器不应该将状态显示为 = AVPlayerStatusReadyToPlay。我面临管理它的问题。例如,我如何知道 AVPlayer 对哪个流媒体 URL 有效?

我的代码:

-(void)viewDidLoad {
    NSURL *url = [[NSURL alloc] initWithString:urlString];
    AVAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
    AVPlayerItem *anItem = [AVPlayerItem playerItemWithAsset:asset];
    [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
    avPlayer = [AVPlayer playerWithPlayerItem:anItem];
    [avPlayer addObserver:self forKeyPath"status" options:0 context:nil];

}

-(void)observeValueForKeyPathNSString *)keyPath ofObjectid)object changeNSDictionary *)change contextvoid *)context {
    if (object == avPlayer && [keyPath isEqualToString"status"]) {

        if (avPlayer.status == AVPlayerStatusFailed) {
            NSLog(@"\n\n **** AVPlayer Failed  ***\n\n");
        }

        else if (avPlayer.status == AVPlayerStatusReadyToPlay) {
            NSLog(@"\n\n ****  AVPlayer Ready to Play   ****\n\n");
            [avPlayer play];

        }
        else if (avPlayer.status == AVPlayerItemStatusUnknown) {
            NSLog(@"\n\n  **** AVPlayer Unknown  \n\n ****");
        }
    }
}



Best Answer-推荐答案


当我在浏览器中打开您的音频网址(http://listen.radionomy.com/almightyradiohindi)时,它会变为(http://streaming.radionomy.com/AlmightyRadioHindi?lang=en-US%2cen%3bq%3d0.8%2cfa%3bq%3d0.6) 如果你能得到准确的 url 并对其进行 url 编码,问题将得到解决

swift 3.0中的url编码:

var originalString = "test/test"
var escapedString = originalString.addingPercentEncoding(withAllowedCharacters: .urlHostAllowed)
print(escapedString!)

关于iOS - AVPlayer 不为某些 URL 流式传输音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40945125/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap