604849e92c
With these changes the size and type of the RAW file as well as other details can be displayed in the Cards View. This also improves the indexing of camera and lens metadata. Signed-off-by: Michael Mayer <michael@photoprism.app>
12 lines
223 B
Go
12 lines
223 B
Go
package media
|
|
|
|
const (
|
|
Unknown Type = ""
|
|
Image Type = "image"
|
|
Raw Type = "raw"
|
|
Animated Type = "animated"
|
|
Live Type = "live"
|
|
Video Type = "video"
|
|
Vector Type = "vector"
|
|
Sidecar Type = "sidecar"
|
|
)
|