forked from External/mediamtx
update docs (#2590)
This commit is contained in:
parent
cde19097bd
commit
6d27d690dc
3 changed files with 4 additions and 2 deletions
|
|
@ -502,6 +502,8 @@ docker run --rm -it \
|
|||
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:
|
||||
|
||||
```yml
|
||||
|
|
|
|||
|
|
@ -175,7 +175,7 @@ type Conf struct {
|
|||
|
||||
// Paths
|
||||
OptionalPaths map[string]*OptionalPath `json:"paths"`
|
||||
Paths map[string]*Path `json:"-"`
|
||||
Paths map[string]*Path `json:"-"` // filled by Check()
|
||||
}
|
||||
|
||||
func (conf *Conf) setDefaults() {
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ func srtCheckPassphrase(passphrase string) error {
|
|||
|
||||
// Path is a path configuration.
|
||||
type Path struct {
|
||||
Regexp *regexp.Regexp `json:"-"`
|
||||
Regexp *regexp.Regexp `json:"-"` // filled by Check()
|
||||
|
||||
// General
|
||||
Source string `json:"source"`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue