RtspSource Class

RTSP source allows for media from an RTSP camera or generic RTSP server to be ingested into a live pipeline.

All required parameters must be populated in order to send to Azure.

Inheritance
azure.media.videoanalyzeredge._generated.models._models_py3.SourceNodeBase
RtspSource

Constructor

RtspSource(*, name: str, endpoint: azure.media.videoanalyzeredge._generated.models._models_py3.EndpointBase, transport: Optional[Union[str, azure.media.videoanalyzeredge._generated.models._azure_video_analyzerfor_edge_enums.RtspTransport]] = None, **kwargs)

Variables

type
str

Required. Type discriminator for the derived types.Constant filled by server.

name
str

Required. Node name. Must be unique within the topology.

transport
str or <xref:azure.media.videoanalyzer.edge.models.RtspTransport>

Network transport utilized by the RTSP and RTP exchange: TCP or HTTP. When using TCP, the RTP packets are interleaved on the TCP RTSP connection. When using HTTP, the RTSP messages are exchanged through long lived HTTP connections, and the RTP packages are interleaved in the HTTP connections alongside the RTSP messages. Possible values include: "http", "tcp".

endpoint
<xref:azure.media.videoanalyzer.edge.models.EndpointBase>

Required. RTSP endpoint information for Video Analyzer to connect to. This contains the required information for Video Analyzer to connect to RTSP cameras and/or generic RTSP servers.