update docs

This commit is contained in:
aler9 2020-10-19 13:11:51 +02:00
parent 57877df875
commit d9df32ec85
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
[![Go Report Card](https://goreportcard.com/badge/github.com/aler9/rtsp-simple-server)](https://goreportcard.com/report/github.com/aler9/rtsp-simple-server)
[![Docker Hub](https://img.shields.io/badge/docker-aler9%2Frtsp--simple--server-blue)](https://hub.docker.com/r/aler9/rtsp-simple-server)
_rtsp-simple-server_ is a simple, ready-to-use and zero-dependency RTSP server and RTSP proxy, a software that allows multiple users to publish and read live video and audio streams over time. RTSP is a standard protocol that describe how to perform these operations with the help of a server, that is contacted by both readers and publishers in order to negotiate a streaming method. The server is then responsible of relaying the publisher streams to the readers.
_rtsp-simple-server_ is a simple, ready-to-use and zero-dependency RTSP server and RTSP proxy, a software that allows multiple users to publish and read live video and audio streams over time. RTSP is a standard protocol that describes how to perform these operations with the help of a server, that is contacted by both readers and publishers in order to negotiate a streaming method, then relays the publisher streams to the readers.
Features:
* Read and publish live streams with UDP and TCP

View File

@ -333,7 +333,7 @@ func Load(fpath string) (*Conf, error) {
return nil, err
}
} else {
// yaml doesn't use nil dicts - avoid test fails by using nil
// the configuration file doesn't use nil dicts - avoid test fails by using nil
pconf.PublishIps = nil
}
@ -360,7 +360,7 @@ func Load(fpath string) (*Conf, error) {
return nil, err
}
} else {
// yaml doesn't use nil dicts - avoid test fails by using nil
// the configuration file doesn't use nil dicts - avoid test fails by using nil
pconf.ReadIps = nil
}