mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 11:39:08 +03:00
14 lines
261 B
Go
14 lines
261 B
Go
|
package replays
|
||
|
|
||
|
type HLSOutputConfiguration struct {
|
||
|
ID string
|
||
|
StreamId string
|
||
|
VariantId string
|
||
|
Name string
|
||
|
VideoBitrate int
|
||
|
ScaledWidth int
|
||
|
ScaledHeight int
|
||
|
Framerate int
|
||
|
SegmentDuration float64
|
||
|
}
|