如何在 AVPlayer 中播放 iPod 库文件
如何将 iPod 库音乐文件导入到 AVAudioPlayer 中?
How can I get an ipod library music file into AVAudioPlayer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将 iPod 库音乐文件导入到 AVAudioPlayer 中?
How can I get an ipod library music file into AVAudioPlayer?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
正如 David 提到的,还有更多的工作要做,例如,您必须管理播放媒体项目集合中的下一个曲目,但这里有一种方法,可以使用用户从 iPod Picker 中选择的一组 MPMediaItems 来实现此目的。 AssetURL 是您使用的,它为您提供 MP3 文件的路径(例如 ipod-library://item/item.mp3?id=-6889145242935454020)
As David mentions there is more work to do than this, for example you have to manage playing the next track in a collection of media items, but here is one way to do it with a set of MPMediaItems that a user selected from the iPod Picker. The AssetURL is what you use, it gives you a path to the MP3 file (e.g. ipod-library://item/item.mp3?id=-6889145242935454020)
是的,您可以使用 SDK 播放 iPod 库中的歌曲,而无需借助
MPMusicPlayerController
类。更基本的
AVPlayer
类可以通过使用歌曲的MPMediaItemPropertyAssetURL
属性中的NSUrl
值来处理 iPod 库中的音频文件。您必须做更多的工作才能正确设置所有内容,但这是可以完成的。Yes, you can play songs from the iPod library using the SDK without resorting to the
MPMusicPlayerController
class.The more basic
AVPlayer
class can handle audio files from the iPod library by using theNSUrl
value from the song'sMPMediaItemPropertyAssetURL
property. You have to do a lot more work to get everything setup properly, but it can be done.SDK 没有提供从 iPod 库读取文件的功能(正如您需要使用
AVAudioPlayer
那样),可能是出于反盗版的原因。要播放 iPod 库项目,请使用MPMusicPlayerController
类。编辑:这不再准确。请参阅下面描述 AVPlayer 类的使用的答案。
The SDK has no provision for reading files from the iPod library (as you'd need to do to use
AVAudioPlayer
with it), probably for anti-piracy reasons. To play iPod library items, use theMPMusicPlayerController
class.Edit: This is no longer accurate. See the below answers which describe the use of the AVPlayer class.
是否有可能在
MPMusicPlayerController
中获取有关 dB 计量的信息?也许启动一个AVAudioSession
来并行录音就可以完成这项工作?我需要 dB 值来构建某种体积摄谱仪。Is there any possibility to get information about dB-metering in
MPMusicPlayerController
? Perhaps initiating anAVAudioSession
for Recording in parallel would do the job?? I need dB-values to build some kind of volume-spectrograph.