Class LiveEventEncoding
java.lang.Object
com.azure.resourcemanager.mediaservices.models.LiveEventEncoding
Specifies the live event type and optional encoding settings for encoding live events.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet the encodingType property: Live event type.Get the keyFrameInterval property: Use an ISO 8601 time value between 0.5 to 20 seconds to specify the output fragment length for the video and audio tracks of an encoding live event.Get the presetName property: The optional encoding preset name, used when encodingType is not None.Get the stretchMode property: Specifies how the input video will be resized to fit the desired output resolution(s).void
validate()
Validates the instance.withEncodingType
(LiveEventEncodingType encodingType) Set the encodingType property: Live event type.withKeyFrameInterval
(Duration keyFrameInterval) Set the keyFrameInterval property: Use an ISO 8601 time value between 0.5 to 20 seconds to specify the output fragment length for the video and audio tracks of an encoding live event.withPresetName
(String presetName) Set the presetName property: The optional encoding preset name, used when encodingType is not None.withStretchMode
(StretchMode stretchMode) Set the stretchMode property: Specifies how the input video will be resized to fit the desired output resolution(s).
-
Constructor Details
-
LiveEventEncoding
public LiveEventEncoding()Creates an instance of LiveEventEncoding class.
-
-
Method Details
-
encodingType
Get the encodingType property: 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.- Returns:
- the encodingType value.
-
withEncodingType
Set the encodingType property: 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.- Parameters:
encodingType
- the encodingType value to set.- Returns:
- the LiveEventEncoding object itself.
-
presetName
Get the presetName property: The optional encoding preset name, used when encodingType is not None. This value is specified at creation time and cannot be updated. If the encodingType is set to Standard, then the default preset name is ‘Default720p’. Else if the encodingType is set to Premium1080p, the default preset is ‘Default1080p’.- Returns:
- the presetName value.
-
withPresetName
Set the presetName property: The optional encoding preset name, used when encodingType is not None. This value is specified at creation time and cannot be updated. If the encodingType is set to Standard, then the default preset name is ‘Default720p’. Else if the encodingType is set to Premium1080p, the default preset is ‘Default1080p’.- Parameters:
presetName
- the presetName value to set.- Returns:
- the LiveEventEncoding object itself.
-
stretchMode
Get the stretchMode property: Specifies how the input video will be resized to fit the desired output resolution(s). Default is None.- Returns:
- the stretchMode value.
-
withStretchMode
Set the stretchMode property: Specifies how the input video will be resized to fit the desired output resolution(s). Default is None.- Parameters:
stretchMode
- the stretchMode value to set.- Returns:
- the LiveEventEncoding object itself.
-
keyFrameInterval
Get the keyFrameInterval property: Use an ISO 8601 time value between 0.5 to 20 seconds to specify the output fragment length for the video and audio tracks of an encoding live event. For example, use PT2S to indicate 2 seconds. For the video track it also defines the key frame interval, or the length of a GoP (group of pictures). If this value is not set for an encoding live event, the fragment duration defaults to 2 seconds. The value cannot be set for pass-through live events.- Returns:
- the keyFrameInterval value.
-
withKeyFrameInterval
Set the keyFrameInterval property: Use an ISO 8601 time value between 0.5 to 20 seconds to specify the output fragment length for the video and audio tracks of an encoding live event. For example, use PT2S to indicate 2 seconds. For the video track it also defines the key frame interval, or the length of a GoP (group of pictures). If this value is not set for an encoding live event, the fragment duration defaults to 2 seconds. The value cannot be set for pass-through live events.- Parameters:
keyFrameInterval
- the keyFrameInterval value to set.- Returns:
- the LiveEventEncoding object itself.
-
validate
public void validate()Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-