mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
Some checks failed
code_lint / golangci_lint (push) Has been cancelled
code_lint / mod_tidy (push) Has been cancelled
code_lint / api_docs (push) Has been cancelled
code_test / test_64 (push) Has been cancelled
code_test / test_32 (push) Has been cancelled
code_test / test_highlevel (push) Has been cancelled
39 lines
936 B
Go
39 lines
936 B
Go
package rpicamera
|
|
|
|
type params struct {
|
|
LogLevel string
|
|
CameraID int
|
|
Width int
|
|
Height int
|
|
HFlip bool
|
|
VFlip bool
|
|
Brightness float64
|
|
Contrast float64
|
|
Saturation float64
|
|
Sharpness float64
|
|
Exposure string
|
|
AWB string
|
|
AWBGainRed float64
|
|
AWBGainBlue float64
|
|
Denoise string
|
|
Shutter int
|
|
Metering string
|
|
Gain float64
|
|
EV float64
|
|
ROI string
|
|
HDR bool
|
|
TuningFile string
|
|
Mode string
|
|
FPS float64
|
|
IDRPeriod int
|
|
Bitrate int
|
|
Profile string
|
|
Level string
|
|
AfMode string
|
|
AfRange string
|
|
AfSpeed string
|
|
LensPosition float64
|
|
AfWindow string
|
|
TextOverlayEnable bool
|
|
TextOverlay string
|
|
}
|