Forgot some MP4 extensions

Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
Serial 2021-04-18 00:24:32 -04:00
parent c886cc87be
commit 3df43317fd
2 changed files with 18 additions and 18 deletions

View file

@ -14,15 +14,15 @@ in order to parse metadata in different file formats.
## Supported Formats
| File Format | Extensions | Read | Write | Backend |
|---------------|---------------------|------|-------|---------------------------------------------------------------------------------------------------------------------|
| Ape | `ape` |**X** |**X** | [**ape**](https://github.com/rossnomann/rust-ape) |
| FLAC | `flac` |**X** |**X** | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
| MP3 | `mp3` |**X** |**X** | [**id3**](https://github.com/polyfloyd/rust-id3) |
| MP4 | `mp4`, `m4a`, `m4b` |**X** |**X** | [**mp4ameta**](https://github.com/Saecki/rust-mp4ameta) |
| Opus | `opus` |**X** | | [**opus_headers**](https://github.com/zaethan/opus_headers) |
| Ogg Vorbis | `ogg`, `oga` |**X** |**X** | [**lewton**](https://github.com/RustAudio/lewton) (decoding) [**ogg**](https://github.com/RustAudio/ogg) (encoding) |
| WAV(*) | `wav`, `wave` |**X** |**X** | [**riff**](https://github.com/frabert/riff) |
| File Format | Extensions | Read | Write | Backend |
|---------------|-------------------------------------------|------|-------|---------------------------------------------------------------------------------------------------------------------|
| Ape | `ape` |**X** |**X** | [**ape**](https://github.com/rossnomann/rust-ape) |
| FLAC | `flac` |**X** |**X** | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
| MP3 | `mp3` |**X** |**X** | [**id3**](https://github.com/polyfloyd/rust-id3) |
| MP4 | `mp4`, `m4a`, `m4b`, `m4p`, `m4v`, `isom` |**X** |**X** | [**mp4ameta**](https://github.com/Saecki/rust-mp4ameta) |
| Opus | `opus` |**X** | | [**opus_headers**](https://github.com/zaethan/opus_headers) |
| Ogg Vorbis | `ogg`, `oga` |**X** |**X** | [**lewton**](https://github.com/RustAudio/lewton) (decoding) [**ogg**](https://github.com/RustAudio/ogg) (encoding) |
| WAV(*) | `wav`, `wave` |**X** |**X** | [**riff**](https://github.com/frabert/riff) |
* NOTE: Only RIFF LIST type INFO is supported for now. This means there's less data available, and it's less likely to be accurate due to the use of non-standard INFO IDs. ID3 support will come soon.

View file

@ -13,15 +13,15 @@
//!
//! # Supported Formats
//!
//! | File Format | Extensions | Read | Write | Backend |
//! |---------------|---------------------|------|-------|---------------------------------------------------------------------------------------------------------------------|
//! | Ape | `ape` |**X** |**X** | [**ape**](https://github.com/rossnomann/rust-ape) |
//! | FLAC | `flac` |**X** |**X** | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
//! | MP3 | `mp3` |**X** |**X** | [**id3**](https://github.com/polyfloyd/rust-id3) |
//! | MP4 | `mp4`, `m4a`, `m4b` |**X** |**X** | [**mp4ameta**](https://github.com/Saecki/rust-mp4ameta) |
//! | Opus | `opus` |**X** | | [**opus_headers**](https://github.com/zaethan/opus_headers) |
//! | Ogg Vorbis | `ogg`, `oga` |**X** |**X** | [**lewton**](https://github.com/RustAudio/lewton) (decoding) [**ogg**](https://github.com/RustAudio/ogg) (encoding) |
//! | WAV(*) | `wav`, `wave` |**X** |**X** | [**riff**](https://github.com/frabert/riff) |
//! | File Format | Extensions | Read | Write | Backend |
//! |---------------|-------------------------------------------|------|-------|---------------------------------------------------------------------------------------------------------------------|
//! | Ape | `ape` |**X** |**X** | [**ape**](https://github.com/rossnomann/rust-ape) |
//! | FLAC | `flac` |**X** |**X** | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
//! | MP3 | `mp3` |**X** |**X** | [**id3**](https://github.com/polyfloyd/rust-id3) |
//! | MP4 | `mp4`, `m4a`, `m4b`, `m4p`, `m4v`, `isom` |**X** |**X** | [**mp4ameta**](https://github.com/Saecki/rust-mp4ameta) |
//! | Opus | `opus` |**X** | | [**opus_headers**](https://github.com/zaethan/opus_headers) |
//! | Ogg Vorbis | `ogg`, `oga` |**X** |**X** | [**lewton**](https://github.com/RustAudio/lewton) (decoding) [**ogg**](https://github.com/RustAudio/ogg) (encoding) |
//! | WAV(*) | `wav`, `wave` |**X** |**X** | [**riff**](https://github.com/frabert/riff) |
//!
//! * NOTE: Only RIFF LIST type INFO is supported for now. This means there's less data available,
//! and it's less likely to be accurate due to the use of non-standard INFO IDs. ID3 support will come soon.