mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-14 11:01:55 +00:00
14 lines
209 B
Go
14 lines
209 B
Go
package rpicamera
|
|
|
|
// Params is a set of camera parameters.
|
|
type Params struct {
|
|
CameraID int
|
|
Width int
|
|
Height int
|
|
FPS int
|
|
IDRPeriod int
|
|
Bitrate int
|
|
Profile string
|
|
Level string
|
|
}
|