AdvanceOptions

Advanced options for video encoding.

static public class AdvanceOptions {
  public ENCODING_PREFERENCE encodingPreference;
  public COMPRESSION_PREFERENCE compressionPreference;
  public AdvanceOptions(
      ENCODING_PREFERENCE encodingPreference, COMPRESSION_PREFERENCE compressionPreference) {
    this.encodingPreference = encodingPreference;
    this.compressionPreference = compressionPreference;
  }
  public AdvanceOptions() {
    this.encodingPreference = ENCODING_PREFERENCE.PREFER_AUTO;
    this.compressionPreference = COMPRESSION_PREFERENCE.PREFER_LOW_LATENCY;
  }
}
Since
v4.1.0

Attributes

encodingPreference
Video encoder preference. See ENCODING_PREFERENCE.
compressionPreference
Compression preference for video encoding. See COMPRESSION_PREFERENCE.