@@ -572,25 +572,29 @@ class JobState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
572
572
SCHEDULED = "Scheduled"
573
573
574
574
class LiveEventEncodingType (with_metaclass (_CaseInsensitiveEnumMeta , str , Enum )):
575
- """Live event type. When encodingType is set to None, the service simply passes through the
576
- incoming video and audio layer(s) to the output. When encodingType is set to Standard or
577
- Premium1080p, a live encoder transcodes the incoming stream into multiple bitrates or layers.
578
- See https://go.microsoft.com/fwlink/?linkid=2095101 for more information. This property cannot
579
- be modified after the live event is created.
575
+ """Live event type. When encodingType is set to PassthroughBasic or PassthroughStandard, the
576
+ service simply passes through the incoming video and audio layer(s) to the output. When
577
+ encodingType is set to Standard or Premium1080p, a live encoder transcodes the incoming stream
578
+ into multiple bitrates or layers. See https://go.microsoft.com/fwlink/?linkid=2095101 for more
579
+ information. This property cannot be modified after the live event is created.
580
580
"""
581
581
582
- #: A contribution live encoder sends a multiple bitrate stream. The ingested stream passes through
583
- #: the live event without any further processing. It is also called the pass-through mode .
582
+ #: This is the same as PassthroughStandard, please see description below. This enumeration value
583
+ #: is being deprecated .
584
584
NONE = "None"
585
585
#: A contribution live encoder sends a single bitrate stream to the live event and Media Services
586
586
#: creates multiple bitrate streams. The output cannot exceed 720p in resolution.
587
587
STANDARD = "Standard"
588
588
#: A contribution live encoder sends a single bitrate stream to the live event and Media Services
589
589
#: creates multiple bitrate streams. The output cannot exceed 1080p in resolution.
590
590
PREMIUM1080_P = "Premium1080p"
591
- #: Pending update...
591
+ #: The ingested stream passes through the live event from the contribution encoder without any
592
+ #: further processing. In the PassthroughBasic mode, ingestion is limited to up to 5Mbps and only
593
+ #: 1 concurrent live output is allowed. Live transcription is not available.
592
594
PASSTHROUGH_BASIC = "PassthroughBasic"
593
- #: Pending update...
595
+ #: The ingested stream passes through the live event from the contribution encoder without any
596
+ #: further processing. Live transcription is available. Ingestion bitrate limits are much higher
597
+ #: and up to 3 concurrent live outputs are allowed.
594
598
PASSTHROUGH_STANDARD = "PassthroughStandard"
595
599
596
600
class LiveEventInputProtocol (with_metaclass (_CaseInsensitiveEnumMeta , str , Enum )):
0 commit comments