13 lines
240 B
Go
13 lines
240 B
Go
|
package metadata
|
||
|
|
||
|
type Fragment struct {
|
||
|
// fragment's URL
|
||
|
Url string `json:"url"`
|
||
|
|
||
|
// fragment's path relative to fragment_base_url
|
||
|
Path string `json:"path"`
|
||
|
|
||
|
Duration *float64 `json:"duration"`
|
||
|
Filesize *int `json:"filesize"`
|
||
|
}
|