JRTCSDK-iOS v2401.0
视频客服 API 文档
载入中...
搜索中...
未找到
JRTCRecordLocalParam.h
1//
2// JRTCRecordLocalParam.h
3// JRTCSDK
4//
5// Created by juphoon on 2020/4/3.
6// Copyright © 2020 juphoon. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
15
17@interface JRTCRecordLocalLayout : NSObject
18
30- (void)setId:(NSString *)id_ isUserId:(bool)isUserId;
31
37- (void)setPosition:(int)position;
38
39@end
40
42@interface JRTCRecordLocalParam : NSObject
43
47@property (nonatomic, assign) int frameRate;
48
52@property (nonatomic, assign) VideoMergeMode mergeMode;
53
57@property (nonatomic, assign) IntelligentMergeMode intelligentMergeMode;
58
62@property (nonatomic, assign) ScsMergeMode scsMergeMode;
63
67@property (nonatomic, assign) int videoWidth;
68
72@property (nonatomic, assign) int videoHeight;
73
77@property (nonatomic, assign) int iBitrate;
78
82@property (nonatomic, copy, nonnull) NSString *filePath;
83
87@property (nonatomic) bool recVideo;
88
92@property (nonatomic) bool recAudio;
93
97@property (nonatomic) bool includeSelf;
98
102@property (nonatomic, strong) NSDictionary<NSString*, NSString*> *watermarkTextDic;
103
183@property (nonatomic, copy) NSString* configFilePath;
184
188@property (nonatomic, strong) NSArray<JRTCRecordLocalLayout*> *layoutArray;
189
190@end
191
193
194NS_ASSUME_NONNULL_END
ScsMergeMode
Definition: JRTCEnum.h:238
VideoMergeMode
Definition: JRTCEnum.h:188
IntelligentMergeMode
Definition: JRTCEnum.h:200
成员布局配置类
Definition: JRTCRecordLocalParam.h:18
本地录制参数
Definition: JRTCRecordLocalParam.h:43
NSString * configFilePath
Definition: JRTCRecordLocalParam.h:183
bool includeSelf
Definition: JRTCRecordLocalParam.h:97
IntelligentMergeMode intelligentMergeMode
Definition: JRTCRecordLocalParam.h:57
VideoMergeMode mergeMode
Definition: JRTCRecordLocalParam.h:52
ScsMergeMode scsMergeMode
Definition: JRTCRecordLocalParam.h:62
bool recAudio
Definition: JRTCRecordLocalParam.h:92
int videoHeight
Definition: JRTCRecordLocalParam.h:72
int videoWidth
Definition: JRTCRecordLocalParam.h:67
int frameRate
Definition: JRTCRecordLocalParam.h:47
int iBitrate
Definition: JRTCRecordLocalParam.h:77
bool recVideo
Definition: JRTCRecordLocalParam.h:87
NSString * filePath
Definition: JRTCRecordLocalParam.h:82
NSArray< JRTCRecordLocalLayout * > * layoutArray
Definition: JRTCRecordLocalParam.h:188
NSDictionary< NSString *, NSString * > * watermarkTextDic
Definition: JRTCRecordLocalParam.h:102