23 lines
553 B
Objective-C
23 lines
553 B
Objective-C
//
|
|
// SCRtmpLiveViewController.h
|
|
// SellyCloudSDK_Example
|
|
//
|
|
// Created by Caleb on 8/7/25.
|
|
// Copyright © 2025 Caleb. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SellyCloudSDK/SellyCloudManager.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SCLivePusherViewController : UIViewController
|
|
@property (nonatomic, strong)NSString *url;
|
|
@property (nonatomic, strong)SellyPlayerStreamInfo *streamInfo;
|
|
@property (nonatomic, assign)BOOL audioOnly;
|
|
|
|
@property (nonatomic, strong)SellyLiveVideoConfiguration *videoConfig;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|