mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
Some checks are pending
code_lint / golangci_lint (push) Waiting to run
code_lint / mod_tidy (push) Waiting to run
code_lint / api_docs (push) Waiting to run
code_test / test_64 (push) Waiting to run
code_test / test_32 (push) Waiting to run
code_test / test_e2e (push) Waiting to run
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package rpicamera
|
|
|
|
type params struct {
|
|
LogLevel string
|
|
CameraID uint32
|
|
Width uint32
|
|
Height uint32
|
|
HFlip bool
|
|
VFlip bool
|
|
Brightness float32
|
|
Contrast float32
|
|
Saturation float32
|
|
Sharpness float32
|
|
Exposure string
|
|
AWB string
|
|
AWBGainRed float32
|
|
AWBGainBlue float32
|
|
Denoise string
|
|
Shutter uint32
|
|
Metering string
|
|
Gain float32
|
|
EV float32
|
|
ROI string
|
|
HDR bool
|
|
TuningFile string
|
|
Mode string
|
|
FPS float32
|
|
AfMode string
|
|
AfRange string
|
|
AfSpeed string
|
|
LensPosition float32
|
|
AfWindow string
|
|
FlickerPeriod uint32
|
|
TextOverlayEnable bool
|
|
TextOverlay string
|
|
Codec string
|
|
IDRPeriod uint32
|
|
Bitrate uint32
|
|
HardwareH264Profile string
|
|
HardwareH264Level string
|
|
SoftwareH264Profile string
|
|
SoftwareH264Level string
|
|
SecondaryWidth uint32
|
|
SecondaryHeight uint32
|
|
SecondaryFPS float32
|
|
SecondaryMJPEGQuality uint32
|
|
}
|