如何使用不太复杂的编码获取 MP3 文件的详细信息(如作者、标题、专辑、年份等)?
我只想要一段简单的代码,它可以从 mp3 文件中提供作者、专辑、年份、标题和流派。如果可以的话,以变量的形式,以便我可以使用它。我想做的就是让这些信息显示在标签中。例如。 lbl艺术家、lbl专辑、lbl流派、lbl年份、lbl标题。如果有人能给我一些帮助,我会
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您想要的信息称为 ID3。该网站对此有很多答案(多种语言)。例如,如何读取 MP3 文件标签
The information you want is called ID3. This site has many answers for this (in many languages). For example, How to read MP3 file tags
相关 Stackoverflow:
Related Stackoverflow:
MP3 标签采用 ID3 格式,因此这就是您所追求的。
更多相关的 stackoverflow 问题:
我个人喜欢 BASS 库,但是它可以做更多的音频工作,所以只有当你想做更多的事情(比如播放、混音、效果等)时才值得付出努力。但它以出色的方式完成这些事情。多种语言和平台的低音手包装器,包括 Delphi、.NET、Windows、iOS 等。--
jeroen
MP3 tags are in ID3 format, so that is what you are after.
More related stackoverflow questions:
Personally I love the BASS library, but that does much more audio stuff, so it is only worth the effort if you want to do more (like playing, mixing, effects and such). It does those things in an excellent way though. Bass hand wrappers in many languages and platforms, including Delphi, .NET, Windows, iOS, just to name a few..
--jeroen