RtspSourceArgs

data class RtspSourceArgs(val endpoint: Output<Either<TlsEndpointArgs, UnsecuredEndpointArgs>>, val name: Output<String>, val transport: Output<Either<String, RtspTransport>>? = null, val type: Output<String>) : ConvertibleToJava<RtspSourceArgs>

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: Output<Either<TlsEndpointArgs, UnsecuredEndpointArgs>>, name: Output<String>, transport: Output<Either<String, RtspTransport>>? = null, type: Output<String>)

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
val name: Output<String>

Node name. Must be unique within the topology.

Link copied to clipboard
val transport: Output<Either<String, RtspTransport>>? = 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
val type: Output<String>

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

Functions

Link copied to clipboard
open override fun toJava(): RtspSourceArgs