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