Skip to content

Commit

Permalink
Fix descriptions for encoding types (#15281)
Browse files Browse the repository at this point in the history
  • Loading branch information
giakas authored Jul 21, 2021
1 parent dc90355 commit c2ec03e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1404,7 +1404,7 @@
"properties": {
"encodingType": {
"type": "string",
"description": "Live event type. When encodingType is set to None, 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.",
"description": "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.",
"enum": [
"None",
"Standard",
Expand All @@ -1417,7 +1417,7 @@
"values": [
{
"value": "None",
"description": "A contribution live encoder sends a multiple bitrate stream. The ingested stream passes through the live event without any further processing. It is also called the pass-through mode."
"description": "This is the same as PassthroughStandard, please see description below. This enumeration value is being deprecated."
},
{
"value": "Standard",
Expand All @@ -1429,11 +1429,11 @@
},
{
"value": "PassthroughBasic",
"description": "Pending update..."
"description": "The ingested stream passes through the live event from the contribution encoder without any further processing. In the PassthroughBasic mode, ingestion is limited to up to 5Mbps and only 1 concurrent live output is allowed. Live transcription is not available."
},
{
"value": "PassthroughStandard",
"description": "Pending update..."
"description": "The ingested stream passes through the live event from the contribution encoder without any further processing. Live transcription is available. Ingestion bitrate limits are much higher and up to 3 concurrent live outputs are allowed."
}
],
"modelAsString": true
Expand Down

0 comments on commit c2ec03e

Please sign in to comment.