-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMP42File.h
More file actions
31 lines (24 loc) · 705 Bytes
/
MP42File.h
File metadata and controls
31 lines (24 loc) · 705 Bytes
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
//
// MP42File.h
// Subler
//
// Created by Damiano Galassi on 31/01/09.
// Copyright 2009 Damiano Galassi. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "mp4v2.h"
#import "MP42Metadata.h"
@interface MP42File : NSObject {
@private
MP4FileHandle fileHandle;
NSString *filePath;
@protected
MP42Metadata *metadata;
}
@property(readonly) MP42Metadata *metadata;
- (id) initWithExistingFile:(NSString *)path;
- (BOOL) writeToFilePath:(NSString *)absoulteFilePath flags:(uint64_t)flags
error:(NSError **)outError removeAllTags:(BOOL)performRemove;
- (BOOL) updateMP4File:(NSError **)outError removeAllTags:(BOOL)performRemove;
- (void) optimize;
@end