import "41.neocities.org/media/tubi"
type Content struct { Children []*Content DetailedType string `json:"detailed_type"` Id int `json:",string"` SeriesId int `json:"series_id,string"` // these should already be in reverse order by resolution VideoResources []VideoResource `json:"video_resources"` }
type VideoResource struct { LicenseServer *struct { Url string } `json:"license_server"` Manifest struct { Url string // MPD } Type string }
func (v *VideoResource) Widevine(data []byte) ([]byte, error)