mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
Add missing AIFF extensions
This commit is contained in:
parent
3c397705c0
commit
08b2dd9209
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ Parse, convert, and write metadata to various audio formats.
|
|||
| File Format | Extensions | Read | Write | Metadata Format(s) |
|
||||
|-------------|-------------------------------------------------|-------|-------|------------------------------------------------|
|
||||
| Ape | `ape` | **X** | **X** | `APEv2`, `APEv1`, `ID3v2` (Read only), `ID3v1` |
|
||||
| AIFF | `aiff`, `aif` | **X** | **X** | `ID3v2`, `Text Chunks` |
|
||||
| AIFF | `aiff`, `aif`, `aifc`, `afc` | **X** | **X** | `ID3v2`, `Text Chunks` |
|
||||
| FLAC | `flac` | **X** | **X** | `Vorbis Comments` |
|
||||
| MP3 | `mp3` | **X** | **X** | `ID3v2`, `ID3v1`, `APEv2`, `APEv1` |
|
||||
| MP4 | `mp4`, `m4a`, `m4b`, `m4p`, `m4r`, `m4v`, `3gp` | **X** | **X** | `iTunes-style ilst` |
|
||||
|
|
|
@ -256,7 +256,7 @@ impl FileType {
|
|||
|
||||
match ext.as_str() {
|
||||
"ape" => Some(Self::APE),
|
||||
"aiff" | "aif" => Some(Self::AIFF),
|
||||
"aiff" | "aif" | "afc" | "aifc" => Some(Self::AIFF),
|
||||
"mp3" => Some(Self::MP3),
|
||||
"wav" | "wave" => Some(Self::WAV),
|
||||
"opus" => Some(Self::Opus),
|
||||
|
|
Loading…
Reference in a new issue