2007-02-24 20:36:27 +00:00
|
|
|
//
|
|
|
|
// AudioMetadataReader.m
|
|
|
|
// CogAudio
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/24/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "AudioMetadataReader.h"
|
|
|
|
#import "PluginController.h"
|
|
|
|
|
|
|
|
@implementation AudioMetadataReader
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
+ (NSDictionary *)metadataForURL:(NSURL *)url {
|
|
|
|
@autoreleasepool {
|
|
|
|
return [[PluginController sharedPluginController] metadataForURL:url skipCue:NO];
|
|
|
|
}
|
2022-01-15 00:46:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
+ (NSDictionary *)metadataForURL:(NSURL *)url skipCue:(BOOL)skip {
|
|
|
|
@autoreleasepool {
|
|
|
|
return [[PluginController sharedPluginController] metadataForURL:url skipCue:skip];
|
|
|
|
}
|
2007-02-24 20:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|