如何从 MPMoviePlayerController 获取 MPMediaItem?
我如何从 MPMoviePlayerController 获取 MPMediaItem,因为在 MusicPlayer 的情况下我可以获取它,如下所示
MPMediaItem *currentItem = self.musicPlayer.nowPlayingItem;
但如何从 MPMoviePlayerController 获取它?有可能吗?
事实上,我想获取有关当前正在播放的电影项目的信息,例如其标题、艺术家等,是否可以获取视频文件的元数据?
How can i get MPMediaItem from MPMoviePlayerController as i can get it in case of MusicPlayer as follows
MPMediaItem *currentItem = self.musicPlayer.nowPlayingItem;
But how to get it from MPMoviePlayerController? Is it even possible?
Infact i want to get the information about the current movie item playing, for example its title, artist etc, is it possible to get the metadata for a video file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道您是否最终找到了解决方案,但我这样做并且效果很好:
您只能使用“点语法”来调用访问器和修改器。对于其他方法,您必须使用 Obejctive-C“消息样式语法”。
I don't know if you finaly find out a solution, but I do this way and it works great :
You can only call accessors and mutators using the "dot-syntaxe". For other methods you must use Obejctive-C "message-style-syntaxe".