forked from rrooding/TagLib.framework
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTagLib.h
50 lines (40 loc) · 1.14 KB
/
TagLib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// TagLib.h
// TagLibBundle
//
// A simple Obj-C wrapper around the C functions that TagLib exposes
//
// Created by Nick Ludlam on 21/07/2010.
//
#import <Foundation/Foundation.h>
@interface TagLib : NSObject {
BOOL validTags;
BOOL validAudioProperties;
NSString *path;
NSString *title;
NSString *artist;
NSString *album;
NSString *comment;
NSString *genre;
NSNumber *track;
NSNumber *year;
NSNumber *length;
NSNumber *sampleRate;
NSNumber *bitRate;
}
@property (nonatomic, copy) NSString *path;
@property (nonatomic) BOOL validTags;
@property (nonatomic) BOOL validAudioProperties;
// Tags
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *artist;
@property (nonatomic, copy) NSString *album;
@property (nonatomic, copy) NSString *comment;
@property (nonatomic, copy) NSString *genre;
@property (nonatomic, retain) NSNumber *track;
@property (nonatomic, retain) NSNumber *year;
// Audio properties
@property (nonatomic, retain) NSNumber *length;
@property (nonatomic, retain) NSNumber *sampleRate;
@property (nonatomic, retain) NSNumber *bitRate;
@end