blob: 9e217611c5cd25a0ab57d483ed0986f0844208cf (
plain)
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
|
//
// HBVideo.h
// HandBrake
//
// Created by Damiano Galassi on 12/08/14.
//
//
#import <Foundation/Foundation.h>
@interface HBVideo : NSObject
- (void)applySettingsFromPreset:(NSDictionary *)preset;
@property (nonatomic, readwrite) int videoEncoder;
@property (nonatomic, readwrite) int qualityType;
@property (nonatomic, readwrite) int avgBitrate;
@property (nonatomic, readwrite) float quality;
@property (nonatomic, readwrite) int frameRate;
@property (nonatomic, readwrite) int frameRateMode;
@property (nonatomic, readwrite) BOOL fastFirstPass;
@property (nonatomic, readwrite) BOOL twoPass;
@property (nonatomic, readwrite) BOOL turboTwoPass;
@property (nonatomic, readwrite, copy) NSString *videoOptionExtra;
@end
|