TagLib: Re-enable some file types
These may be handled by the Core Audio input, which does not read tags on its own. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
parent
cdddcaecd8
commit
632e53510c
1 changed files with 2 additions and 2 deletions
|
@ -193,11 +193,11 @@
|
|||
|
||||
+ (NSArray *)fileTypes {
|
||||
// May be a way to get a list of supported formats
|
||||
return @[@"asf", @"wma", @"mpc", @"mp3", @"apl", @"wav", @"aif", @"aiff", @"wv", @"wvp"];
|
||||
return @[@"asf", @"wma", @"mpc", @"mp3", @"mp4", @"m4a", @"apl", @"wav", @"aif", @"aiff", @"wv", @"wvp", @"ogg", @"oga", @"opus"];
|
||||
}
|
||||
|
||||
+ (NSArray *)mimeTypes {
|
||||
return @[@"audio/x-ms-wma", @"audio/x-musepack", @"audio/mpeg", @"audio/x-mp3", @"audio/x-apl", @"audio/wav", @"audio/aiff", @"audio/x-wavpack"];
|
||||
return @[@"audio/x-ms-wma", @"audio/x-musepack", @"audio/mpeg", @"audio/x-mp3", @"audio/mp4", @"audio/x-apl", @"audio/wav", @"audio/aiff", @"audio/x-wavpack", @"audio/ogg"];
|
||||
}
|
||||
|
||||
+ (float)priority {
|
||||
|
|
Loading…
Reference in a new issue