SrtConnectionDescriptor

data class SrtConnectionDescriptor(val host: String, val port: Int, val streamId: String? = null, val passPhrase: String? = null, val latency: Int? = null, val connectionTimeout: Int? = null)

SRT connection parameters

If the field is null, it will be ignored. The default SRT parameters will be used (see default SRT options) See

Parameters

host

server ip

port

server port

streamId

SRT stream ID

passPhrase

SRT passPhrase

latency

SRT latency in ms

connectionTimeout

SRT connection timeout in ms

Constructors

Link copied to clipboard
constructor(host: String, port: Int, streamId: String? = null, passPhrase: String? = null, latency: Int? = null, connectionTimeout: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val connectionTimeout: Int? = null
Link copied to clipboard
Link copied to clipboard
val latency: Int? = null
Link copied to clipboard
val passPhrase: String? = null
Link copied to clipboard
val port: Int
Link copied to clipboard
val streamId: String? = null