如何从BufferedInputStream读取id3标签?
此链接对我没有帮助,但这是 id3_1 http://willcode4beer.com/parsing.jsp?set =mp3ID3
有很多库,但没有一个不能与流一起使用。
告诉图书馆,或者告诉我需要下载多少信息,这将保存文件并传输与该文件一起使用的库。
this link not helped me, but this is id3_1 http://willcode4beer.com/parsing.jsp?set=mp3ID3
There are many libraries, but not one does not work with the stream.
Tell the library, or tell me how much information needs to be downloaded, that would save the file and transfer libraries that work with the File.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要读取多少才能获得ID3信息取决于流中ID3信息的版本。对于ID3v1,它将是最后128字节(或者对于扩展ID3v1,最后227+128字节);对于 ID3v2,它将位于开头。
How much needs to be read to obtain the ID3 information depends on the version of ID3 information in the stream. For ID3v1 it will be the last 128 bytes (or last 227+128 bytes for extended ID3v1); for ID3v2 it will be at the beginning.