Microsoft.Media videoAnalyzers/livePipelines

ARM template resource definition

The videoAnalyzers/livePipelines resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Media/videoAnalyzers/livePipelines resource, add the following JSON to your template.

{
  "type": "Microsoft.Media/videoAnalyzers/livePipelines",
  "apiVersion": "2021-11-01-preview",
  "name": "string",
  "properties": {
    "bitrateKbps": "int",
    "description": "string",
    "parameters": [
      {
        "name": "string",
        "value": "string"
      }
    ],
    "topologyName": "string"
  }
}

Property values

videoAnalyzers/livePipelines

Name Description Value
type The resource type 'Microsoft.Media/videoAnalyzers/livePipelines'
apiVersion The resource api version '2021-11-01-preview'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
properties The resource properties. LivePipelineProperties

LivePipelineProperties

Name Description Value
bitrateKbps Maximum bitrate capacity in Kbps reserved for the live pipeline. The allowed range is from 500 to 3000 Kbps in increments of 100 Kbps. If the RTSP camera exceeds this capacity, then the service will disconnect temporarily from the camera. It will retry to re-establish connection (with exponential backoff), checking to see if the camera bitrate is now below the reserved capacity. Doing so will ensure that one 'noisy neighbor' does not affect other live pipelines in your account. int (required)
description An optional description for the pipeline. string
parameters List of the instance level parameter values for the user-defined topology parameters. A pipeline can only define or override parameters values for parameters which have been declared in the referenced topology. Topology parameters without a default value must be defined. Topology parameters with a default value can be optionally be overridden. ParameterDefinition[]
topologyName The reference to an existing pipeline topology defined for real-time content processing. When activated, this live pipeline will process content according to the pipeline topology definition. string (required)

ParameterDefinition

Name Description Value
name Name of the parameter declared in the pipeline topology. string (required)
value Parameter value to be applied on this specific pipeline. string