ytdl-web/ytdl/metadata/hls.go

14 lines
311 B
Go
Raw Normal View History

2023-05-23 18:44:05 -04:00
package metadata
type HlsAes struct {
// The URI from which the key will be downloaded
Uri string `json:"uri"`
// The key (as hex) used to decrypt fragments.
// If `key` is given, any key URI will be ignored
Key string `json:"key"`
// The IV (as hex) used to decrypt fragments
Iv string `json:"iv"`
}