-
Notifications
You must be signed in to change notification settings - Fork 0
/
TagLibFile.h
43 lines (28 loc) · 965 Bytes
/
TagLibFile.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
//
// TagLibFile.h
// TenTunes
//
// Created by Lukas Tenbrink on 30.08.2018.
// Copyright © 2018 Lukas Tenbrink. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
@interface TagLibFile : NSObject
-(instancetype _Nullable)initWithURL:(NSURL* _Nonnull)url;
@property(nullable) NSString *title;
@property(nullable) NSString *artist;
@property(nullable) NSString *album;
@property(nullable) NSString *band;
@property(nullable) NSString *remixArtist;
@property(nullable) NSString *genre;
@property(nullable) NSData *image;
@property(nullable) NSString *initialKey;
@property(nullable) NSString *bpm;
@property(nullable) NSString *comments;
@property(nullable) NSString *publisher;
@property unsigned int year;
@property unsigned int trackNumber;
@property(nullable) NSString *partOfSet;
@property(nullable, readonly) NSString *id3Description;
-(BOOL)write:(NSError * _Nullable __autoreleasing * _Nullable)error;
@end