Add missing AIFF extensions

This commit is contained in:
Serial 2022-01-31 13:25:52 -05:00
parent 3c397705c0
commit 08b2dd9209
No known key found for this signature in database
GPG key ID: DA95198DC17C4568
2 changed files with 2 additions and 2 deletions

View file

@ -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` |

View file

@ -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),