美文网首页
iOS AVPlayer播放没有.mp3后缀的链接

iOS AVPlayer播放没有.mp3后缀的链接

作者: Coder_JdHo | 来源:发表于2022-12-15 13:57 被阅读0次

把原来的:

AVPlayerItem *playerItem = [[AVPlayerItem alloc] initWithURL:[NSURL URLWithString:urlStr]];
AVPlayer *player = [[AVPlayer alloc] initWithPlayerItem:playerItem];

指定MP3类型,改为:

NSString *mimeType = @"audio/mp3";
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL URLWithString:urlStr] options:@{@"AVURLAssetOutOfBandMIMETypeKey": mimeType}];
AVPlayerItem *playerItem = [[AVPlayerItem alloc] initWithAsset:asset];
AVPlayer *player = [[AVPlayer alloc] initWithPlayerItem:playerItem];

相关文章

网友评论

      本文标题:iOS AVPlayer播放没有.mp3后缀的链接

      本文链接:https://www.haomeiwen.com/subject/jesrqdtx.html