mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
Forgot some MP4 extensions
Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
parent
c886cc87be
commit
3df43317fd
2 changed files with 18 additions and 18 deletions
|
@ -15,11 +15,11 @@ 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) |
|
||||
| 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) |
|
||||
|
|
|
@ -14,11 +14,11 @@
|
|||
//! # 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) |
|
||||
//! | 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) |
|
||||
|
|
Loading…
Reference in a new issue