CNVideoVC.h 695 Bytes
//
//  CNVideoVC.h
//  BBASMDemo_Example
//
//  Created by CNLive on 2021/10/30.
//  Copyright © 2021 杨苓玉. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "ZFPlayerController.h"

NS_ASSUME_NONNULL_BEGIN

@interface CNVideoVC : UIViewController

@property (nonatomic, strong) ZFPlayerController *videoPlayer;
@property (nonatomic, weak) id delegate;

// 加载视频数据
- (void)loadVideoInfo:(NSDictionary *)info;

// 更新播放器信息
- (void)updateVideoInfo:(NSDictionary *)info;

// 为Live播放器隐藏一些控制视图
- (void)hiddenViewsForLive;

// 为Live播放器设置缓冲时间
- (void)setPlayerBufferTime:(NSTimeInterval)cache;
@end

NS_ASSUME_NONNULL_END