Agora Java API Reference for Android
|
Public Member Functions | |
boolean | onCaptureVideoFrame (VideoFrame videoFrame) |
boolean | onPreEncodeVideoFrame (VideoFrame videoFrame) |
boolean | onScreenCaptureVideoFrame (VideoFrame videoFrame) |
boolean | onPreEncodeScreenVideoFrame (VideoFrame videoFrame) |
boolean | onMediaPlayerVideoFrame (VideoFrame videoFrame, int mediaPlayerId) |
boolean | onRenderVideoFrame (String channelId, int uid, VideoFrame videoFrame) |
int | getVideoFrameProcessMode () |
int | getVideoFormatPreference () |
boolean | getRotationApplied () |
boolean | getMirrorApplied () |
int | getObservedFramePosition () |
Public Attributes | |
int | PROCESS_MODE_READ_ONLY = 0 |
int | PROCESS_MODE_READ_WRITE = 1 |
int | POSITION_POST_CAPTURER = 1 |
int | POSITION_PRE_RENDERER = 1 << 1 |
int | POSITION_PRE_ENCODER = 1 << 2 |
boolean io.agora.rtc2.video.IVideoFrameObserver.onCaptureVideoFrame | ( | VideoFrame | videoFrame | ) |
Occurs each time the SDK receives a video frame captured by the local camera.
After you successfully register the video frame observer, the SDK triggers this callback each time a video frame is received. In this callback, you can get the video data captured by the local camera. You can then pre-process the data according to your scenarios.
After pre-processing, you can send the processed video data back to the SDK by setting the videoFrame
parameter in this callback.
videoFrame | A pointer to the video frame. |
boolean io.agora.rtc2.video.IVideoFrameObserver.onPreEncodeVideoFrame | ( | VideoFrame | videoFrame | ) |
Occurs each time the SDK receives a video frame before encoding.
After you successfully register the video frame observer, the SDK triggers this callback each time when it receives a video frame. In this callback, you can get the video data before encoding. You can then process the data according to your particular scenarios.
After processing, you can send the processed video data back to the SDK by setting the videoFrame
parameter in this callback.
The video data that this callback gets has been pre-processed, with its content cropped, rotated, and the image enhanced.
videoFrame | A pointer to the video frame: VideoFrame |
boolean io.agora.rtc2.video.IVideoFrameObserver.onScreenCaptureVideoFrame | ( | VideoFrame | videoFrame | ) |
Occurs each time the SDK receives a video frame captured by the screen.
After you successfully register the video frame observer, the SDK triggers this callback each time a video frame is received. In this callback, you can get the video data captured by the screen. You can then pre-process the data according to your scenarios.
After pre-processing, you can send the processed video data back to the SDK by setting the videoFrame
parameter in this callback.
videoFrame | A pointer to the video frame: VideoFrame |
boolean io.agora.rtc2.video.IVideoFrameObserver.onMediaPlayerVideoFrame | ( | VideoFrame | videoFrame, |
int | mediaPlayerId | ||
) |
Occurs each time the SDK receives a video frame decoded by the MediaPlayer.
After you successfully register the video frame observer, the SDK triggers this callback each time a video frame is decoded. In this callback, you can get the video data decoded by the MediaPlayer. You can then pre-process the data according to your scenarios.
After pre-processing, you can send the processed video data back to the SDK by setting the videoFrame
parameter in this callback.
videoFrame | A pointer to the video frame: VideoFrame |
mediaPlayerId | of the mediaPlayer. |
boolean io.agora.rtc2.video.IVideoFrameObserver.onRenderVideoFrame | ( | String | channelId, |
int | uid, | ||
VideoFrame | videoFrame | ||
) |
Occurs each time the SDK receives a video frame sent by the remote user.
After you successfully register the video frame observer, the SDK triggers this callback each time a video frame is received. In this callback, you can get the video data sent by the remote user. You can then post-process the data according to your scenarios.
After post-processing, you can send the processed data back to the SDK by setting the videoFrame
parameter in this callback.
channelId | Channel name. |
uid | ID of the remote user who sends the current video frame. |
videoFrame | A pointer to the video frame. |
int io.agora.rtc2.video.IVideoFrameObserver.getVideoFrameProcessMode | ( | ) |
Indicate the video frame mode of the observer.
boolean io.agora.rtc2.video.IVideoFrameObserver.getRotationApplied | ( | ) |
Occurs each time needs to get rotation angle.
boolean io.agora.rtc2.video.IVideoFrameObserver.getMirrorApplied | ( | ) |
Occurs each time needs to get whether mirror is applied or not.
int io.agora.rtc2.video.IVideoFrameObserver.getObservedFramePosition | ( | ) |
Sets the frame position for the video observer.
After you successfully register the video observer, the SDK triggers this callback each time it receives a video frame. You can determine which position to observe by setting the return value. The SDK provides 3 positions for observer. Each position corresponds to a callback function:
POSITION_POST_CAPTURER(1 << 0): The position after capturing the video data, which corresponds to the onCaptureVideoFrame callback. POSITION_PRE_RENDERER(1 << 1): The position before receiving the remote video data, which corresponds to the onRenderVideoFrame callback. POSITION_PRE_ENCODER(1 << 2): The position before encoding the video data, which corresponds to the onPreEncodeVideoFrame callback.
To observe multiple frame positions, use '|' (the OR operator). This callback observes POSITION_POST_CAPTURER(1 << 0) and POSITION_PRE_RENDERER(1 << 1) by default. To conserve the system consumption, you can reduce the number of frame positions that you want to observe.
int io.agora.rtc2.video.IVideoFrameObserver.PROCESS_MODE_READ_ONLY = 0 |
Observer works as a pure renderer and will not modify the original frame.
int io.agora.rtc2.video.IVideoFrameObserver.PROCESS_MODE_READ_WRITE = 1 |
Observer works as a filter that will process the video frame and affect the following frame processing in SDK.
int io.agora.rtc2.video.IVideoFrameObserver.POSITION_POST_CAPTURER = 1 |
The position after capturing the video data, which corresponds to the onCaptureVideoFrame callback.
int io.agora.rtc2.video.IVideoFrameObserver.POSITION_PRE_RENDERER = 1 << 1 |
The position before receiving the remote video data, which corresponds to the onRenderVideoFrame callback.
int io.agora.rtc2.video.IVideoFrameObserver.POSITION_PRE_ENCODER = 1 << 2 |
The position before encoding the video data, which corresponds to the onPreEncodeVideoFrame callback.