Rtsp Source Args
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
fun RtspSourceArgs(endpoint: Output<Either<TlsEndpointArgs, UnsecuredEndpointArgs>>, name: Output<String>, transport: Output<Either<String, RtspTransport>>? = null, type: Output<String>)
Functions
Properties
Link copied to clipboard
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.