20 lines
215 B
Go
20 lines
215 B
Go
package storage
|
|
|
|
import "time"
|
|
|
|
type Segment struct {
|
|
Start time.Time
|
|
Duration time.Duration
|
|
|
|
H264 byte
|
|
G711 byte
|
|
|
|
SPS []byte
|
|
PPS []byte
|
|
}
|
|
|
|
type StreamRecord struct {
|
|
ID string
|
|
Segments []Segment
|
|
}
|