如何使用 vba 访问文件(特别是 mp3 文件)的元属性
我正在创建一个 Excel 工作表,用于从文件夹中的 MP3 文件读取标签。然而,时间显然是根据文件的 MetaProperties 内部的数据计算的,或者是在这些数据内部的。当我使用属性 MetaProperties 时,VBA 总是会引发错误,即使在使用示例的副本来调整适当的数据时也是如此。提前感谢您的解决方案。
I'm creating an excel-sheets that reads the tags from the MP3-files situated in a folder. Yet the time apparently is or calculated from data inside the MetaProperties of a file or is inside those data. When I use the Property MetaProperties VBA always provokes an error, even in using a copy of the example in adapting the appropiate data. Thanx in advance for your solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这有帮助吗?
http://technet.microsoft.com/en-us/library/ee176591.aspx
你没有说你想要什么元数据,但是这个方法提供了很多信息。
Does this help?
http://technet.microsoft.com/en-us/library/ee176591.aspx
You didn't say what metadata you want, but this method offers a lot of information.
MP3 根本不使用 MetaProperties。他们实际上使用文件的最后 256 个字节来存储专辑、曲目等信息(ID3 标签)。
请参阅此处 http://id3.org/id3v2.4.0-struct 了解更多信息。
MP3's do not use MetaProperties at all. They actually use the last 256 bytes of the file to store album, track, etc information (the ID3 tag).
See here http://id3.org/id3v2.4.0-structure for more information.