ID3 Android 媒体扫描仪
Android 提取 ID3 标签并显示在本机音乐播放器应用程序中。 我想知道是否可以访问Android已经提取的ID3标签。
我正在编写一个媒体播放器应用程序,希望使用 MediaScanner 扫描媒体并使用 Android 提取的 ID3/艺术家/等
Android extracts the ID3 tags and displays in the native Music player app.
I wish to know if it is possible to access the ID3 tags that have already been extracted by Android.
I am writing a media-player application and wish to use MediaScanner to scan the media and use the ID3/artists/etc extracted by Android
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android 将提取并插入的所有信息添加到媒体提供商的数据库中。您可以使用 MediaStore 类中定义的列访问此信息。
不幸的是,没有直接的方法来访问标签中可用的任何其他 ID3 信息。
Android adds all of the information extracted and inserted into the media provider's database. You can access this information using the columns defined in the MediaStore class.
Unfortunately there's no direct way to access any other ID3 information available in the tags.