在哪里可以找到 taglib-sharp 支持的所有音频文件类型的列表?
我不知道为什么这对我来说很难找到,但我根本找不到任何关于此的文档。我只是想确保支持 taglib-sharp 可以使用的所有音频文件类型并排除所有其他类型。
我所能找到的只是源代码的链接,我真的不想为了这么简单的问题而深入研究它。谢谢。
顺便问一下,“官方”网站在哪里?
编辑:经过更多的研究,看起来我能找到的最佳答案是在文件类文档中:
http://taglib-sharp.sourcearchive.com/documentation/2.0.3.7plus-pdfsg/classTagLib_1_1File.html
我真的在寻找支持的音频文件列表扩展,但这几乎满足了我的需要。
I don't know why this is so hard for me to find, but I simply can't find any documentation on this. I just want to be sure I include support for all audio file types that taglib-sharp can work with and exclude all others.
All I've been able to find is a link to the source code and I really don't want to dig through it for such a simple question. Thanks.
By the way, where is the "official" website?
EDIT: After a little more research, it looks like the best answer I can find is in the file class documentation here:
http://taglib-sharp.sourcearchive.com/documentation/2.0.3.7plus-pdfsg/classTagLib_1_1File.html
I was really looking for a list of supported audio file extensions, but this pretty much gives me what I need.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在代码中搜索以下字符串来获取 mime 类型和扩展名的准确列表: SupportedMimeType
您将看到 Mpeg.AudioFile 的以下内容。第一个参数是 mime 类型,第二个参数(如果设置)是扩展名。
You can get the exact list of mime-types and extensions by searching the code for the following string: SupportedMimeType
You'll see the following for Mpeg.AudioFile. The first parameter is the mime-type, and the second, if set, is the extension.