mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-12 09:44:59 +00:00
144 lines
6.1 KiB
YAML
144 lines
6.1 KiB
YAML
|
|
# sets the verbosity of the program; available values are "warn", "info", "debug".
|
|
logLevel: info
|
|
# destinations of log messages; available values are "stdout", "file" and "syslog".
|
|
logDestinations: [stdout]
|
|
# if "file" is in logDestinations, this is the file which will receive the logs.
|
|
logFile: rtsp-simple-server.log
|
|
|
|
# supported stream protocols.
|
|
# UDP is the most performant, but can cause problems if there's a NAT between
|
|
# server and clients, and doesn't support encryption.
|
|
# TCP is the most versatile, and does support encryption.
|
|
# The handshake is always performed with TCP.
|
|
protocols: [udp, tcp]
|
|
# encrypt handshake and TCP streams with TLS (RTSPS).
|
|
# available values are "no", "strict", "optional".
|
|
encryption: no
|
|
# port of the TCP/RTSP listener. This is used only if encryption is "no" or "optional".
|
|
rtspPort: 8554
|
|
# port of the TCP/TLS/RTSPS listener. This is used only if encryption is "strict" or "optional".
|
|
rtspsPort: 8555
|
|
# port of the UDP/RTP listener. This is used only if "udp" is in protocols.
|
|
rtpPort: 8000
|
|
# port of the UDP/RTCP listener. This is used only if "udp" is in protocols.
|
|
rtcpPort: 8001
|
|
# path to the server key. This is used only if encryption is "strict" or "optional".
|
|
serverKey: server.key
|
|
# path to the server certificate. This is used only if encryption is "strict" or "optional".
|
|
serverCert: server.crt
|
|
# authentication methods.
|
|
authMethods: [basic, digest]
|
|
# timeout of read operations.
|
|
readTimeout: 10s
|
|
# timeout of write operations.
|
|
writeTimeout: 10s
|
|
|
|
# enable Prometheus-compatible metrics on port 9998.
|
|
metrics: no
|
|
# enable pprof on port 9999 to monitor performances.
|
|
pprof: no
|
|
|
|
# command to run when a client connects to the server.
|
|
# this is terminated with SIGINT when a client disconnects from the server.
|
|
# the server port is available in the RTSP_PORT variable.
|
|
# the restart parameter allows to restart the command if it exits suddenly.
|
|
runOnConnect:
|
|
runOnConnectRestart: no
|
|
|
|
# these settings are path-dependent.
|
|
# it's possible to use regular expressions by using a tilde as prefix.
|
|
# for example, "~^(test1|test2)$" will match both "test1" and "test2".
|
|
# for example, "~^prefix" will match all paths that start with "prefix".
|
|
# the settings under the path "all" are applied to all paths that do not match
|
|
# another entry.
|
|
paths:
|
|
all:
|
|
# source of the stream - this can be:
|
|
# * record -> the stream is provided by a RTSP client
|
|
# * rtsp://existing-url -> the stream is pulled from another RTSP server
|
|
# * rtsps://existing-url -> the stream is pulled from another RTSP server
|
|
# * rtmp://existing-url -> the stream is pulled from a RTMP server
|
|
# * redirect -> the stream is provided by another path or server
|
|
source: record
|
|
|
|
# if the source is an RTSP url, this is the protocol that will be used to
|
|
# pull the stream. available options are "automatic", "udp", "tcp".
|
|
# the tcp protocol can help to overcome the error "no UDP packets received recently".
|
|
sourceProtocol: automatic
|
|
|
|
# if the source is an RTSP or RTMP url, it will be pulled only when at least
|
|
# one reader is connected, saving bandwidth.
|
|
sourceOnDemand: no
|
|
# if sourceOnDemand is "yes", readers will be put on hold until the source is
|
|
# ready or until this amount of time has passed.
|
|
sourceOnDemandStartTimeout: 10s
|
|
# if sourceOnDemand is "yes", the source will be closed when there are no
|
|
# readers connected and this amount of time has passed.
|
|
sourceOnDemandCloseAfter: 10s
|
|
|
|
# if the source is "redirect", this is the RTSP url which clients will be
|
|
# redirected to.
|
|
sourceRedirect:
|
|
|
|
# fallback url to redirect clients to when nobody is publishing to this path.
|
|
fallback:
|
|
|
|
# username required to publish.
|
|
# sha256-hashed values can be inserted with the "sha256:" prefix.
|
|
publishUser:
|
|
# password required to publish.
|
|
# sha256-hashed values can be inserted with the "sha256:" prefix.
|
|
publishPass:
|
|
# ips or networks (x.x.x.x/24) allowed to publish.
|
|
publishIps: []
|
|
|
|
# username required to read.
|
|
# sha256-hashed values can be inserted with the "sha256:" prefix.
|
|
readUser:
|
|
# password required to read.
|
|
# sha256-hashed values can be inserted with the "sha256:" prefix.
|
|
readPass:
|
|
# ips or networks (x.x.x.x/24) allowed to read.
|
|
readIps: []
|
|
|
|
# command to run when this path is initialized.
|
|
# this can be used to publish a stream and keep it always opened.
|
|
# this is terminated with SIGINT when the program closes.
|
|
# the path name is available in the RTSP_PATH variable.
|
|
# the server port is available in the RTSP_PORT variable.
|
|
# the restart parameter allows to restart the command if it exits suddenly.
|
|
runOnInit:
|
|
runOnInitRestart: no
|
|
|
|
# command to run when this path is requested.
|
|
# this can be used to publish a stream on demand.
|
|
# this is terminated with SIGINT when the path is not requested anymore.
|
|
# the path name is available in the RTSP_PATH variable.
|
|
# the server port is available in the RTSP_PORT variable.
|
|
# the restart parameter allows to restart the command if it exits suddenly.
|
|
runOnDemand:
|
|
runOnDemandRestart: no
|
|
# readers will be put on hold until the runOnDemand command starts publishing
|
|
# or until this amount of time has passed.
|
|
runOnDemandStartTimeout: 10s
|
|
# the runOnDemand command will be closed when there are no
|
|
# readers connected and this amount of time has passed.
|
|
runOnDemandCloseAfter: 10s
|
|
|
|
# command to run when a client starts publishing.
|
|
# this is terminated with SIGINT when a client stops publishing.
|
|
# the path name is available in the RTSP_PATH variable.
|
|
# the server port is available in the RTSP_PORT variable.
|
|
# the restart parameter allows to restart the command if it exits suddenly.
|
|
runOnPublish:
|
|
runOnPublishRestart: no
|
|
|
|
# command to run when a clients starts reading.
|
|
# this is terminated with SIGINT when a client stops reading.
|
|
# the path name is available in the RTSP_PATH variable.
|
|
# the server port is available in the RTSP_PORT variable.
|
|
# the restart parameter allows to restart the command if it exits suddenly.
|
|
runOnRead:
|
|
runOnReadRestart: no
|