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
51
52
53
54
55
56
|
/* HBJob.h $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import <Foundation/Foundation.h>
#include "hb.h"
@class HBPreset;
@class HBVideo;
@class HBPicture;
@class HBFilters;
@class HBAudioSettings;
@class HBSubtitlesSettings;
/**
* HBJob
*/
@interface HBJob : NSObject <NSCoding, NSCopying>
- (instancetype)initWithTitle:(hb_title_t *)title url:(NSURL *)fileURL andPreset:(HBPreset *)preset;
// libhb
@property (nonatomic, readonly) hb_title_t *title;
@property (nonatomic, readonly) NSURL *fileURL;
// Old job format
@property (nonatomic, readwrite, retain) NSDictionary *jobDict;
@property (nonatomic, readonly) NSAttributedString *jobDescription;
// Job settings
@property (nonatomic, readwrite) int fileFormat;
@property (nonatomic, readwrite) BOOL mp4LargeFile;
@property (nonatomic, readwrite) BOOL mp4HttpOptimize;
@property (nonatomic, readwrite) BOOL mp4iPodCompatible;
@property (nonatomic, readonly) HBVideo *video;
@property (nonatomic, readonly) HBPicture *picture;
@property (nonatomic, readonly) HBFilters *filters;
// Defaults settings
@property (nonatomic, readonly) HBAudioSettings *audioSettings;
@property (nonatomic, readonly) HBSubtitlesSettings *subtitlesSettings;
// File resources
@property (nonatomic, readonly) NSMutableArray *audioTracks;
@property (nonatomic, readonly) NSMutableArray *subtitlesTracks;
@property (nonatomic, readonly) NSMutableArray *chapters;
@end
|