@@ -20,6 +20,7 @@ improved on the original TagLib, hence why this project exists.
2020* DIVX: ` AVI ` , ` DIVX ` , ` WAV `
2121* [ ID3v1] ( https://id3.org/ID3v1 ) : ` AAC ` , ` FLAC ` , ` M2A ` , ` MP1 ` , ` MP2 ` , ` MP3 `
2222* [ ID3v2] ( https://id3.org/Developer%20Information ) : ` AAC ` , ` AIF ` , ` AIFF ` , ` AVI ` , ` DIVX ` , ` FLAC ` , ` M2A ` , ` MP1 ` , ` MP2 ` , ` MP3 ` , ` WAV `
23+ * [ Matroska/WebM] ( https://www.matroska.org/technical/tagging.html ) : ` MK3D ` , ` MKA ` , ` MKS ` , ` MKV ` , ` WEBM ` _ read-only_
2324* MovieID: ` AVI ` , ` DIVX ` , ` WAV `
2425* [ RIFF Info] ( https://www.exiftool.org/TagNames/RIFF.html#Info ) : ` AVI ` , ` DIVX ` , ` WAV `
2526* [ Xiph Comment] ( https://www.xiph.org/vorbis/doc/v-comment.html ) : ` FLAC ` , ` OGA ` , ` OGG ` , ` OGV ` , ` OPUS `
@@ -30,11 +31,13 @@ improved on the original TagLib, hence why this project exists.
3031* Advanced Systems Format (ASF): ` ASF ` , ` WMA ` , ` WMV `
3132* Audio Interchange Format (AIFF): ` AIF ` , ` AIFF `
3233* Free Lossless Audio Codec (FLAC): ` FLAC `
34+ * Matroska: ` MK3D ` , ` MKA ` , ` MKS ` , ` MKV `
3335* MPEG-1/2 Audio: ` M2A ` , ` MP1 ` , ` MP2 ` , ` MP3 `
3436* MPEG-1/2 Video: ` M2V ` , ` MPE ` , ` MPEG ` , ` MPG ` , ` MPV2 `
3537* Monkey's Audio: ` APE `
3638* Ogg: ` OGA ` , ` OGG ` , ` OGV ` , ` OPUS `
3739* Resource Interchange File Format (RIFF): ` AVI ` , ` DIVX ` , ` WAV `
40+ * WebM: ` WEBM `
3841* ... More coming soon
3942
4043## Installation
@@ -57,7 +60,7 @@ The `File` class provides factory methods for generating instances of classes th
5760for Monkey's Audio files). The ` File ` class has exposes the ` properties ` and ` tag ` properties to
5861allow manipulation of the tagging information and reading audio/video properties.
5962
60- See the docs for [ the File class] ( docs/classes/file .md ) for complete details of the
63+ See the docs for [ the File class] ( docs/classes/File .md ) for complete details of the
6164available properties.
6265
6366``` typescript
@@ -69,7 +72,7 @@ The `Tag` base class provides a tagging-format agnostic interface to modify tag(
6972object. Set tag properties as needed and they will be stored in a tagging format that is supported
7073by the file type. The changes can be easily written back to the file with ` save() ` .
7174
72- See the docs for [ the Tag class] ( docs/classes/tag .md ) for complete details of the fields
75+ See the docs for [ the Tag class] ( docs/classes/Tag .md ) for complete details of the fields
7376supported by the format-agnostic ` Tag ` class.
7477
7578``` typescript
0 commit comments