mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
4ba36c17a3
- Persist segments - Record configurations - Rebuild entire stream playlists - First steps to working towards https://github.com/owncast/owncast/issues/102
12 lines
259 B
Go
12 lines
259 B
Go
package replays
|
|
|
|
import "time"
|
|
|
|
// HLSSegment represents a single HLS segment.
|
|
type HLSSegment struct {
|
|
ID string
|
|
StreamID string
|
|
Timestamp time.Time
|
|
OutputConfigurationID string
|
|
Path string
|
|
}
|