ytdl-web/ytdl/metadata/chapter.go

12 lines
236 B
Go
Raw Permalink Normal View History

2023-05-23 18:44:05 -04:00
package metadata
type Chapter struct {
// The start time of the chapter in seconds
StartTime float64 `json:"start_time"`
// The end time of the chapter in seconds
EndTime float64 `json:"end_time"`
Title *string `json:"title"`
}