mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-06 09:19:33 +08:00
21 lines
508 B
Go
21 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
|
|
}
|