RtspSourceResponse

data class RtspSourceResponse(val endpoint: Either<TlsEndpointResponse, UnsecuredEndpointResponse>, val name: String, val transport: String? = null, val type: String)

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

Constructors

Link copied to clipboard
constructor(endpoint: Either<TlsEndpointResponse, UnsecuredEndpointResponse>, name: String, transport: String? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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.

Link copied to clipboard

Node name. Must be unique within the topology.

Link copied to clipboard
val transport: String? = null

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.

Link copied to clipboard

The discriminator for derived types. Expected value is '#Microsoft.VideoAnalyzer.RtspSource'.