mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 22:31:09 +03:00
4ba36c17a3
- Persist segments - Record configurations - Rebuild entire stream playlists - First steps to working towards https://github.com/owncast/owncast/issues/102
13 lines
261 B
Go
13 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
|
|
}
|