使用AVQueuePlayer获取当前曲目信息

发布于 2024-12-17 15:55:16 字数 222 浏览 3 评论 0 原文

我正在将 iPod 库加载到 AVQueuePlayer 中并使用以下命令播放它:

[[AVQueuePlayer alloc]]initWithItems:[MPMediaCollectionInstance items] ];  //just one line.

但是如何读取当前正在播放的 MPMediaItem?我想知道艺术家/歌曲名称等信息。 谢谢。

I am loading my iPod library into AVQueuePlayer and playing it using this:

[[AVQueuePlayer alloc]]initWithItems:[MPMediaCollectionInstance items] ];  //just one line.

But how do I read which MPMediaItem is currently playing? I want to know information like artist / song name etc.
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦屿孤独相伴 2024-12-24 15:55:16

拥有您已分配的 AVQueuePlayer 实例。

AVQueuePlayer *_queuePlayer = [[AVQueuePlayer alloc] initWithItems:[MPMediaCollectionInstance items]];

通过该实例,您可以获得 AVPlayerItem

AVPlayerItem *currentItem = _queuePlayer.currentItem; 

对于上述行,请检查 文档参考

现在尝试以下代码,

NSArray *metadataList = [currentItem.asset commonMetadata];
for (AVMetadataItem *metaItem in metadataList) {
    NSLog(@"%@",[metaItem commonKey]);
}

它将给出如下列表:

title
creationDate
artwork
albumName
artist

现在您可以获取相应键的值。为此,您必须参考 这个文档也是如此。

Have the instance of the AVQueuePlayer that you have allocated.

AVQueuePlayer *_queuePlayer = [[AVQueuePlayer alloc] initWithItems:[MPMediaCollectionInstance items]];

With that instance, you can get the AVPlayerItem.

AVPlayerItem *currentItem = _queuePlayer.currentItem; 

For the above line, please check the doc reference.

And now try the following code

NSArray *metadataList = [currentItem.asset commonMetadata];
for (AVMetadataItem *metaItem in metadataList) {
    NSLog(@"%@",[metaItem commonKey]);
}

Which will give a list as follows:

title
creationDate
artwork
albumName
artist

Now you can get the value for corresponding keys. For this, you have to refer this doc too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文