gpt4 book ai didi

ios - 使用 initWithContentsOfURL 使用 iPod 歌曲 URL 初始化 AVAudioPlayer

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:54:09 27 4
gpt4 key购买 nike

我知道可以使用 AVPlayer 播放 iPod 歌曲,但我不知道如何使用 initWithContentsOfURL 使用 iPod 歌曲 URL 初始化 AVAudioPlayer。当我尝试时,AVAudioPlayer 在初始化时返回 NULL。

我需要使用 AVAudioPlayer 因为当我的应用在后台运行时我需要使用它的委托(delegate)方法 audioPlayerDidFinishPlaying 进行进一步处理(即 AVAudioPlayer 委托(delegate)方法 audioPlayerDidFinishPlaying 如果应用程序在后台运行,则会调用。但是 AVPlayer 不提供委托(delegate)方法,因此您只能使用不运行的通知在后台)。

以下代码用于使用 AVPlayer 播放 iPod 歌曲。

- (void)viewDidLoad {

[super viewDidLoad];
AVAudioSession *session = [AVAudioSession sharedInstance];
[session setCategory:AVAudioSessionCategoryPlayback error:nil];
NSError *error = nil;

[session setActive:YES error:&error];
MPMediaQuery *query = [MPMediaQuery songsQuery];
NSArray *collection = [query items];
MPMediaItem *item = [collection objectAtIndex:0];
NSLog(@"%@",[item valueForProperty:MPMediaItemPropertyTitle]);
NSURL *url = [item valueForProperty:MPMediaItemPropertyAssetURL];
AVPlayer *player = [[AVPlayer alloc]initWithURL:url]; // <-- Line to Replace
[player play];
}

这很好用。但是,如果我用以下内容替换倒数第二行:

    AVAudioPlayer *player = [[AVAudioPlayer alloc]initWithContentsOfURL:url error:nil];

调用 initWithContentsOfURL 返回 NULL。

关于为什么当我使用 AVAudioPlayer 时返回 NULL,而当我使用 AVPlayer 时返回初始化的播放器有什么想法吗?

根据技术问答http://developer.apple.com/library/ios/#qa/qa1634/_index.html , "与 initWithContentsOfURL: 一起使用的 URL 必须是文件 URL (file://)。即本地路径。"

当我在我的 iPod 库中获取歌曲的 url 时,路径是:

ipod-library://item/item.mp3?id=-4017276016911605928

你会说我的 iPod 库的这条路径不被视为“本地路径”,还是你会认为它是 initWithContentsOfURL 返回 NULL 的错误?

有什么想法吗?

最佳答案

你已经回答了你自己的问题,因为据我所知,它是对 AVAudioPlayer 很重要的 url 路径,它必须是本地的包。有一个将 AVPlayer 与通知一起使用的示例,在 AVPlayerDemo 中搜索 playerItemDidReachEnd 但我无法告诉您它是在后台运行还是在前台运行。

关于ios - 使用 initWithContentsOfURL 使用 iPod 歌曲 URL 初始化 AVAudioPlayer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8691109/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com