CNLiveWebcastManager.h
1.04 KB
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
//
// CNLiveStreamManager.h
// CNLivePlayerSDKDemo
//
// Created by iOS on 17/2/23.
// Copyright © 2017年 雷浩杰. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "CNLiveTypeDef.h"
#import "CNLiveWatermark.h"
#import "CNLiveStreamerBase.h"
#import "CNLiveBeautifyFaceFilter.h"
#import "CNLiveAudioCapture.h"
#import "CNLiveGPUStreamerKit.h"
#import "CNLiveMoviePlayerController.h"
#import "CNLiveBgmPlayer.h"
@interface CNLiveWebcastManager : NSObject
/**
* 应用ID(只读)
*/
@property (nonatomic, readonly) NSString *appId;
/**
* 应用KEY(只读)
*/
@property (nonatomic, readonly) NSString *appKey;
+ (CNLiveWebcastManager *)manager;
/**
@abstract 初始化直播云SDK
@param appId 在open.cnlive.com网站申请得到的appId
@param appKey 在open.cnlive.com网站申请得到的appKey
@warning 必传参数
*/
- (void)initWithAppId:(NSString *)appId appKey:(NSString *)appKey;
/**
@abstract 获取版本号
*/
+ (NSString *)getVersion;
@end