public void onError(int code, String msg, Bundle extraInfo)
参数 | 类型 | 含义 |
code | int | 错误码。 |
msg | String | 错误信息。 |
extraInfo | Bundle | 扩展信息。 |
public void onWarning(int code, String msg, Bundle extraInfo)
参数 | 类型 | 含义 |
code | int | 警告码。 |
msg | String | 警告码信息。 |
extraInfo | Bundle | 扩展信息。 |
public void onPushStatusUpdate(V2TXLivePushStatus status, String msg, Bundle extraInfo)
参数 | 类型 | 含义 |
status | V2TXLivePushStatus | 状态码。 |
msg | String | 连接状态信息。 |
extraInfo | Bundle | 扩展信息。 |
取值 | 含义 |
V2TXLivePushStatusDisconnected | 与服务器断开连接。 |
V2TXLivePushStatusConnecting | 正在连接服务器。 |
V2TXLivePushStatusConnectSuccess | 连接服务器成功。 |
V2TXLivePushStatusReconnecting | 重连服务器中。 |
public void onSnapshotComplete(Bitmap image)
参数 | 类型 | 含义 |
image | Bitmap * | 已截取的视频画面。 |
V2TXLivePusher#enableCustomVideoProcess(boolean, V2TXLiveDef.V2TXLivePixelFormat, V2TXLiveDef.V2TXLiveBufferType)
开启自定义视频处理后,会收到这个回调通知。public void onProcessVideoFrame(V2TXLiveVideoFrame srcFrame, V2TXLiveVideoFrame dstFrame)
参数 | 类型 | 含义 |
srcFrame | V2TXLiveVideoFrame | 用于承载未处理的视频画面。 |
dstFrame | V2TXLiveVideoFrame | 用于承载处理过的视频画面。 |
public void onGLContextCreated()
public void onGLContextDestroyed()
public void onCaptureFirstVideoFrame()
public void onCaptureFirstAudioFrame()
public void onMicrophoneVolumeUpdate(int volume)
public void onStatisticsUpdate(V2TXLivePusherStatistics statistics)
参数 | 类型 | 含义 |
statistics | V2TXLivePusherStatistics | 推流器统计数据。 |
V2TXLivePusher#setMixTranscodingConfig(V2TXLiveDef.V2TXLiveTranscodingConfig)
设置云端混流转码参数后,会收到这个回调通知。public void onSetMixTranscodingConfig(int code, String msg)
参数 | 类型 | 含义 |
code | int | 0 表示成功,其余值表示失败。 |
msg | String | 具体错误原因。 |
本页内容是否解决了您的问题?