Agora Java API Reference for Android
io.agora.rtc.video.VideoEncoderConfiguration.ORIENTATION_MODE Enum Reference

Public Member Functions

int getValue ()
 

Public Attributes

 ORIENTATION_MODE_ADAPTIVE =(0)
 
 ORIENTATION_MODE_FIXED_LANDSCAPE =(1)
 
 ORIENTATION_MODE_FIXED_PORTRAIT =(2)
 

Detailed Description

The video orientation mode of the video.

Member Data Documentation

◆ ORIENTATION_MODE_ADAPTIVE

io.agora.rtc.video.VideoEncoderConfiguration.ORIENTATION_MODE.ORIENTATION_MODE_ADAPTIVE =(0)

(Default) The output video always follows the orientation of the captured video, because the receiver takes the rotational information passed on from the video encoder. Mainly used between Agora’s SDKs.

If the captured video is in landscape mode, the output video is in landscape mode.

If the captured video is in portrait mode, the output video is in portrait mode.

◆ ORIENTATION_MODE_FIXED_LANDSCAPE

io.agora.rtc.video.VideoEncoderConfiguration.ORIENTATION_MODE.ORIENTATION_MODE_FIXED_LANDSCAPE =(1)

The output video is always in landscape mode. If the captured video is in portrait mode, the video encoder crops it to fit the output. Applies to situations where the receiving end cannot process the rotational information. For example, CDN live streaming.

◆ ORIENTATION_MODE_FIXED_PORTRAIT

io.agora.rtc.video.VideoEncoderConfiguration.ORIENTATION_MODE.ORIENTATION_MODE_FIXED_PORTRAIT =(2)

The output video is always in portrait mode. If the captured video is in landscape mode, the video encoder crops it to fit the output. Applies to situations where the receiving end cannot process the rotational information. For example, CDN live streaming.