CNLiveStreamerUrl.h 1.05 KB
//
//  CNLiveStreamerUrl.h
//  CNLivePlayer
//
//  Created by CNLive-zxw on 2019/8/14.
//  Copyright © 2019 153993236@qq.com. All rights reserved.
//

#ifndef CNLiveStreamerUrl_h
#define CNLiveStreamerUrl_h

#import "CNLivePlayerManager.h"

#pragma mark - 推流器版本号
#define StreamerSDKVersion @"0.0.1"    

#pragma mark - 推流
//创建直播活动
#define StreamerURL [NSString stringWithFormat:@"%@/live_epg/createActivity", [CNLivePlayerManager manager].isTestEnvironment ? @"http://test.open.cnlive.com/openapi/api2" : @"http://api.cnlive.com/open/api2"]

//启动直播活动
#define StartStreamerURL [NSString stringWithFormat:@"%@/live_epg/startActivity", [CNLivePlayerManager manager].isTestEnvironment ? @"http://test.open.cnlive.com/openapi/api2" : @"http://api.cnlive.com/open/api2"]

//停止直播活动
#define StopStreamerURL [NSString stringWithFormat:@"%@/live_epg/stopActivity", [CNLivePlayerManager manager].isTestEnvironment ? @"http://test.open.cnlive.com/openapi/api2" : @"http://api.cnlive.com/open/api2"]

#endif /* CNLiveStreamerUrl_h */