1
0
Fork 0
forked from External/mediamtx

update docs (#2590)

This commit is contained in:
Alessandro Ros 2023-10-28 11:52:31 +02:00 committed by GitHub
parent cde19097bd
commit 6d27d690dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -502,6 +502,8 @@ docker run --rm -it \
bluenviron/mediamtx:latest-rpi bluenviron/mediamtx:latest-rpi
``` ```
Be aware that the Docker image is not compatible with cameras that requires a custom `libcamera` (like some ArduCam products), since it comes with a standard `libcamera` included.
Camera settings can be changed by using the `rpiCamera*` parameters: Camera settings can be changed by using the `rpiCamera*` parameters:
```yml ```yml

View file

@ -175,7 +175,7 @@ type Conf struct {
// Paths // Paths
OptionalPaths map[string]*OptionalPath `json:"paths"` OptionalPaths map[string]*OptionalPath `json:"paths"`
Paths map[string]*Path `json:"-"` Paths map[string]*Path `json:"-"` // filled by Check()
} }
func (conf *Conf) setDefaults() { func (conf *Conf) setDefaults() {

View file

@ -49,7 +49,7 @@ func srtCheckPassphrase(passphrase string) error {
// Path is a path configuration. // Path is a path configuration.
type Path struct { type Path struct {
Regexp *regexp.Regexp `json:"-"` Regexp *regexp.Regexp `json:"-"` // filled by Check()
// General // General
Source string `json:"source"` Source string `json:"source"`