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
18
README.md
18
README.md
|
@ -14,15 +14,15 @@ in order to parse metadata in different file formats.
|
||||||
|
|
||||||
## Supported Formats
|
## Supported Formats
|
||||||
|
|
||||||
| File Format | Extensions | Read | Write | Backend |
|
| File Format | Extensions | Read | Write | Backend |
|
||||||
|---------------|---------------------|------|-------|---------------------------------------------------------------------------------------------------------------------|
|
|---------------|-------------------------------------------|------|-------|---------------------------------------------------------------------------------------------------------------------|
|
||||||
| Ape | `ape` |**X** |**X** | [**ape**](https://github.com/rossnomann/rust-ape) |
|
| Ape | `ape` |**X** |**X** | [**ape**](https://github.com/rossnomann/rust-ape) |
|
||||||
| FLAC | `flac` |**X** |**X** | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
|
| FLAC | `flac` |**X** |**X** | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
|
||||||
| MP3 | `mp3` |**X** |**X** | [**id3**](https://github.com/polyfloyd/rust-id3) |
|
| 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) |
|
| 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) |
|
| 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) |
|
| 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.
|
* 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.
|
||||||
|
|
||||||
|
|
18
src/lib.rs
18
src/lib.rs
|
@ -13,15 +13,15 @@
|
||||||
//!
|
//!
|
||||||
//! # Supported Formats
|
//! # Supported Formats
|
||||||
//!
|
//!
|
||||||
//! | File Format | Extensions | Read | Write | Backend |
|
//! | File Format | Extensions | Read | Write | Backend |
|
||||||
//! |---------------|---------------------|------|-------|---------------------------------------------------------------------------------------------------------------------|
|
//! |---------------|-------------------------------------------|------|-------|---------------------------------------------------------------------------------------------------------------------|
|
||||||
//! | Ape | `ape` |**X** |**X** | [**ape**](https://github.com/rossnomann/rust-ape) |
|
//! | Ape | `ape` |**X** |**X** | [**ape**](https://github.com/rossnomann/rust-ape) |
|
||||||
//! | FLAC | `flac` |**X** |**X** | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
|
//! | FLAC | `flac` |**X** |**X** | [**metaflac**](https://github.com/jameshurst/rust-metaflac) |
|
||||||
//! | MP3 | `mp3` |**X** |**X** | [**id3**](https://github.com/polyfloyd/rust-id3) |
|
//! | 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) |
|
//! | 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) |
|
//! | 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) |
|
//! | 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,
|
//! * 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.
|
//! and it's less likely to be accurate due to the use of non-standard INFO IDs. ID3 support will come soon.
|
||||||
|
|
Loading…
Reference in a new issue