mirror of
https://github.com/livepeer/lpms
synced 2025-12-24 13:18:10 +08:00
21 lines
264 B
Go
21 lines
264 B
Go
package types
|
|
|
|
import "time"
|
|
|
|
type HlsSegment struct {
|
|
Data []byte
|
|
Name string
|
|
}
|
|
|
|
type Download struct {
|
|
URI string
|
|
TotalDuration time.Duration
|
|
}
|
|
|
|
type BroadcastReq struct {
|
|
formats []string
|
|
bitrates []string
|
|
codecin string
|
|
codecout []string
|
|
}
|