mirror of
https://github.com/livepeer/lpms
synced 2026-04-22 15:57:25 +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
|
|
}
|