- (void)onError:(id<V2TXLivePlayer>)playercode:(V2TXLiveCode)codemessage:(NSString *)msgextraInfo:(NSDictionary *)extraInfo
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
code | V2TXLiveCode | 错误码。 |
msg | NSString * | 错误信息。 |
extraInfo | NSDictionary * | 扩展信息。 |
- (void)onWarning:(id<V2TXLivePlayer>)playercode:(V2TXLiveCode)codemessage:(NSString *)msgextraInfo:(NSDictionary *)extraInfo
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
code | V2TXLiveCode | 警告码。 |
msg | NSString * | 警告码信息。 |
extraInfo | NSDictionary * | 扩展信息。 |
- (void)onConnected:(id<V2TXLivePlayer>)playerextraInfo:(NSDictionary *)extraInfo
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
extraInfo | NSDictionary * | 扩展信息。 |
- (void)onVideoPlaying:(id<V2TXLivePlayer>)playerfirstPlay:(BOOL)firstPlayextraInfo:(NSDictionary *)extraInfo
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
firstPlay | BOOL | 第一次播放标志。 |
extraInfo | NSDictionary * | 扩展信息。 |
- (void)onVideoLoading:(id<V2TXLivePlayer>)playerextraInfo:(NSDictionary *)extraInfo;
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
extraInfo | NSDictionary * | 扩展信息。 |
- (void)onVideoResolutionChanged:(id<V2TXLivePlayer>)playerwidth:(NSInteger)widthheight:(NSInteger)height;
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
width | NSInteger | 视频宽 |
height | NSInteger | 视频高 |
- (void)onSnapshotComplete:(id<V2TXLivePlayer>)player image:(TXImage *)image
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
image | TXImage * | 已截取的视频画面。 |
[V2TXLivePlayer enableCustomRendering:pixelFormat:bufferType:]
开启自定义渲染之后,会收到这个回调通知。- (void)onRenderVideoFrame:(id<V2TXLivePlayer>)playerframe:(V2TXLiveVideoFrame *)videoFrame
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
videoFrame | V2TXLiveVideoFrame * | 视频帧数据。 |
- (void)onAudioPlaying:(id<V2TXLivePlayer>)playerfirstPlay:(BOOL)firstPlayextraInfo:(NSDictionary *)extraInfo;
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
firstPlay | BOOL | 第一次播放标志。 |
extraInfo | NSDictionary * | 扩展信息。 |
- (void)onAudioLoading:(id<V2TXLivePlayer>)playerextraInfo:(NSDictionary *)extraInfo;
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
extraInfo | NSDictionary * | 扩展信息。 |
- (void)onPlayoutVolumeUpdate:(id<V2TXLivePlayer>)player volume:(NSInteger)volume
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
volume | NSInteger | 音量大小,取值范围:0 - 100。 |
- (void)onStatisticsUpdate:(id<V2TXLivePlayer>)playerstatistics:(V2TXLivePlayerStatistics *)statistics
参数 | 类型 | 含义 |
player | V2TXLivePlayer | 回调该通知的播放器对象。 |
statistics | V2TXLivePlayerStatistics | 播放器统计数据。 |
本页内容是否解决了您的问题?