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)
14 lines
272 B
Go
14 lines
272 B
Go
package media
|
|
|
|
const (
|
|
Unknown Type = ""
|
|
Image Type = "image"
|
|
Raw Type = "raw"
|
|
Vector Type = "vector"
|
|
Animated Type = "animated"
|
|
Live Type = "live"
|
|
Video Type = "video"
|
|
Sidecar Type = "sidecar"
|
|
Text Type = "text"
|
|
Other Type = "other"
|
|
)
|