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
|
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
|
||||||
|
|
|
||||||
|
|
@ -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() {
|
||||||
|
|
|
||||||
|
|
@ -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"`
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue