Share via


LiveEventEncodingType Class

public final class LiveEventEncodingType
extends ExpandableStringEnum<LiveEventEncodingType>

Live event type. When encodingType is set to PassthroughBasic or PassthroughStandard, the service simply passes through the incoming video and audio layer(s) to the output. When encodingType is set to Standard or Premium1080p, a live encoder transcodes the incoming stream into multiple bitrates or layers. See https://go.microsoft.com/fwlink/?linkid=2095101 for more information. This property cannot be modified after the live event is created.

Field Summary

Modifier and Type Field and Description
static final LiveEventEncodingType NONE

Static value None for LiveEventEncodingType.

static final LiveEventEncodingType PASSTHROUGH_BASIC

Static value PassthroughBasic for LiveEventEncodingType.

static final LiveEventEncodingType PASSTHROUGH_STANDARD

Static value PassthroughStandard for LiveEventEncodingType.

static final LiveEventEncodingType PREMIUM1080P

Static value Premium1080p for LiveEventEncodingType.

static final LiveEventEncodingType STANDARD

Static value Standard for LiveEventEncodingType.

Constructor Summary

Constructor Description
LiveEventEncodingType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of LiveEventEncodingType value.

Method Summary

Modifier and Type Method and Description
static LiveEventEncodingType fromString(String name)

Creates or finds a LiveEventEncodingType from its string representation.

static Collection<LiveEventEncodingType> values()

Gets known LiveEventEncodingType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

NONE

public static final LiveEventEncodingType NONE

Static value None for LiveEventEncodingType.

PASSTHROUGH_BASIC

public static final LiveEventEncodingType PASSTHROUGH_BASIC

Static value PassthroughBasic for LiveEventEncodingType.

PASSTHROUGH_STANDARD

public static final LiveEventEncodingType PASSTHROUGH_STANDARD

Static value PassthroughStandard for LiveEventEncodingType.

PREMIUM1080P

public static final LiveEventEncodingType PREMIUM1080P

Static value Premium1080p for LiveEventEncodingType.

STANDARD

public static final LiveEventEncodingType STANDARD

Static value Standard for LiveEventEncodingType.

Constructor Details

LiveEventEncodingType

@Deprecated
public LiveEventEncodingType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of LiveEventEncodingType value.

Method Details

fromString

public static LiveEventEncodingType fromString(String name)

Creates or finds a LiveEventEncodingType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding LiveEventEncodingType.

values

public static Collection<LiveEventEncodingType> values()

Gets known LiveEventEncodingType values.

Returns:

known LiveEventEncodingType values.

Applies to