2007-02-24 20:36:27 +00:00
|
|
|
//
|
|
|
|
// AudioMetadataReader.h
|
|
|
|
// CogAudio
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/24/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface AudioPropertiesReader : NSObject {
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSDictionary *)propertiesForURL:(NSURL *)url;
|
2022-02-13 20:18:58 +00:00
|
|
|
+ (NSDictionary *)propertiesForURL:(NSURL *)url skipCue:(BOOL)skip;
|
2007-02-24 20:36:27 +00:00
|
|
|
|
|
|
|
@end
|