92e6c4fe1e
Extends DownloadSettings with 4 additional options: - Name: File name pattern for downloaded files (existed) - Disabled: Disables downloads - Originals: Only download files stored in "originals" folder - MediaRaw: Include RAW image files - MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
20 lines
344 B
Go
20 lines
344 B
Go
package video
|
|
|
|
// Types maps identifiers to standards.
|
|
var Types = Standards{
|
|
"": AVC,
|
|
"mp4": MP4,
|
|
"mpeg4": MP4,
|
|
"avc": AVC,
|
|
"avc1": AVC,
|
|
"hvc": HEVC,
|
|
"hvc1": HEVC,
|
|
"hevc": HEVC,
|
|
"vvc": VVC,
|
|
"vvc1": VVC,
|
|
"av1": AV1,
|
|
"av01": AV1,
|
|
}
|
|
|
|
// Standards maps names to standardized formats.
|
|
type Standards map[string]Type
|