Where can I find a list of all types of audio files supported by taglib-sharp?

I don’t know why it’s so hard for me to find, but I just can’t find the documentation for this. I just want to make sure that I turn on support for all types of audio files that taglib-sharp can work with and exclude all others.

All I managed to find was a link to the source code, and I really do not want to break it on such a simple question. Thanks.

By the way, where is the official site?

EDIT: after a little research, it seems the best answer I can find is given in the file class documentation:

http://taglib-sharp.sourcearchive.com/documentation/2.0.3.7plus-pdfsg/classTagLib_1_1File.html

I really searched for a list of supported audio file extensions, but that pretty much gives me what I need.

+4
source share
1 answer

You can get an accurate list of mime types and extensions by searching the code for the following line: SupportedMimeType

You will see the following for Mpeg.AudioFile. The first parameter is the mime type, and the second, if set, is an extension.

[SupportedMimeType("taglib/mp3", "mp3")] [SupportedMimeType("audio/x-mp3")] [SupportedMimeType("application/x-id3")] [SupportedMimeType("audio/mpeg")] [SupportedMimeType("audio/x-mpeg")] [SupportedMimeType("audio/x-mpeg-3")] [SupportedMimeType("audio/mpeg3")] [SupportedMimeType("audio/mp3")] [SupportedMimeType("taglib/m2a", "m2a")] [SupportedMimeType("taglib/mp2", "mp2")] [SupportedMimeType("taglib/mp1", "mp1")] [SupportedMimeType("audio/x-mp2")] [SupportedMimeType("audio/x-mp1")] public class AudioFile : TagLib.NonContainer.File 
+5
source

All Articles