c6bb28f60d
Signed-off-by: Michael Mayer <michael@photoprism.app>
20 lines
508 B
Go
20 lines
508 B
Go
package entity
|
|
|
|
// FileDimensions represents metadata related to the size and orientation of a file.
|
|
// see File.UpdateVideoInfos()
|
|
type FileDimensions struct {
|
|
FileWidth int
|
|
FileHeight int
|
|
FileOrientation int
|
|
FileAspectRatio float32
|
|
}
|
|
|
|
// FileAppearance represents file metadata related to colors, luminance and perception.
|
|
// see File.UpdateVideoInfos()
|
|
type FileAppearance struct {
|
|
FileMainColor string
|
|
FileColors string
|
|
FileLuminance string
|
|
FileDiff int
|
|
FileChroma int16
|
|
}
|