JRTCSDK-iOS v2401.0
视频客服 API 文档
载入中...
搜索中...
未找到
JRTCRecordVideoCaptureParam.h
1//
2// JRTCRecordVideoCaptureParam.h
3// JRTCSDKCallCenterDynamic
4//
5// Created by mirror on 2022/10/26.
6// Copyright © 2022 juphoon. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "JRTCRecordWatermark.h"
11
14
15NS_ASSUME_NONNULL_BEGIN
16
17@interface JRTCRecordVideoCaptureParam : NSObject
18
22@property (nonatomic, copy) NSString *filePath;
23
28@property (nonatomic, assign) JRTCRecordAudioSource audioSource;
29
34@property (nonatomic, assign) JRTCVideoRecordFileType fileType;
35
39@property (nonatomic, assign) int width;
40
44@property (nonatomic, assign) int height;
45
51@property (nonatomic, strong) NSArray<JRTCRecordWatermark *> *watermarkList;
52
53@end
54
55NS_ASSUME_NONNULL_END
56
JRTCVideoRecordFileType
Definition: JRTCMediaDeviceConstants.h:135
JRTCRecordAudioSource
Definition: JRTCMediaDeviceConstants.h:161
Definition: JRTCRecordVideoCaptureParam.h:18
NSString * filePath
Definition: JRTCRecordVideoCaptureParam.h:22
JRTCVideoRecordFileType fileType
Definition: JRTCRecordVideoCaptureParam.h:34
int width
Definition: JRTCRecordVideoCaptureParam.h:39
NSArray< JRTCRecordWatermark * > * watermarkList
Definition: JRTCRecordVideoCaptureParam.h:51
int height
Definition: JRTCRecordVideoCaptureParam.h:44
JRTCRecordAudioSource audioSource
Definition: JRTCRecordVideoCaptureParam.h:28