mirror of
https://github.com/bluenviron/mediamtx.git
synced 2026-01-10 04:11:59 -08:00
13 lines
209 B
Go
13 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
|
|
}
|