mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-14 19:12:20 +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
|
||
|
}
|