82d61d1f93
Animated GIFs are transcoded to AVC because it is much smaller and thus also suitable for long/large animations. In addition, this commit adds support for more metadata fields such as frame rate, number of frames, file capture timestamp (unix milliseconds), media type, and software version. Support for SVG files can later be implemented in a similar way.
103 lines
3.5 KiB
Go
103 lines
3.5 KiB
Go
package entity
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
)
|
|
|
|
// MarshalJSON returns the JSON encoding.
|
|
func (m *File) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(&struct {
|
|
UID string
|
|
PhotoUID string
|
|
Name string
|
|
Root string
|
|
Hash string
|
|
Size int64
|
|
Primary bool
|
|
MetaUTC int64 `json:",omitempty"`
|
|
TimeIndex *string `json:",omitempty"`
|
|
MediaID *string `json:",omitempty"`
|
|
InstanceID string `json:",omitempty"`
|
|
OriginalName string `json:",omitempty"`
|
|
Codec string `json:",omitempty"`
|
|
FileType string `json:"FileType"`
|
|
MediaType string `json:"MediaType"`
|
|
Mime string `json:",omitempty"`
|
|
Sidecar bool `json:",omitempty"`
|
|
Missing bool `json:",omitempty"`
|
|
Portrait bool `json:",omitempty"`
|
|
Video bool `json:",omitempty"`
|
|
Duration time.Duration `json:",omitempty"`
|
|
FPS float64 `json:",omitempty"`
|
|
Frames int `json:",omitempty"`
|
|
Width int `json:",omitempty"`
|
|
Height int `json:",omitempty"`
|
|
Orientation int `json:",omitempty"`
|
|
Projection string `json:",omitempty"`
|
|
AspectRatio float32 `json:",omitempty"`
|
|
ColorProfile string `json:",omitempty"`
|
|
MainColor string `json:",omitempty"`
|
|
Colors string `json:",omitempty"`
|
|
Luminance string `json:",omitempty"`
|
|
Diff uint32 `json:",omitempty"`
|
|
Chroma uint8 `json:",omitempty"`
|
|
HDR bool `json:",omitempty"`
|
|
Watermark bool `json:",omitempty"`
|
|
Software string `json:",omitempty"`
|
|
Error string `json:",omitempty"`
|
|
ModTime int64 `json:",omitempty"`
|
|
CreatedAt time.Time `json:",omitempty"`
|
|
CreatedIn int64 `json:",omitempty"`
|
|
UpdatedAt time.Time `json:",omitempty"`
|
|
UpdatedIn int64 `json:",omitempty"`
|
|
DeletedAt *time.Time `json:",omitempty"`
|
|
Markers *Markers `json:",omitempty"`
|
|
}{
|
|
UID: m.FileUID,
|
|
PhotoUID: m.PhotoUID,
|
|
Name: m.FileName,
|
|
Root: m.FileRoot,
|
|
Hash: m.FileHash,
|
|
Size: m.FileSize,
|
|
Primary: m.FilePrimary,
|
|
MetaUTC: m.MetaUTC,
|
|
TimeIndex: m.TimeIndex,
|
|
MediaID: m.MediaID,
|
|
InstanceID: m.InstanceID,
|
|
OriginalName: m.OriginalName,
|
|
Codec: m.FileCodec,
|
|
FileType: m.FileType,
|
|
MediaType: m.MediaType,
|
|
Mime: m.FileMime,
|
|
Sidecar: m.FileSidecar,
|
|
Missing: m.FileMissing,
|
|
Portrait: m.FilePortrait,
|
|
Video: m.FileVideo,
|
|
Duration: m.FileDuration,
|
|
FPS: m.FileFPS,
|
|
Frames: m.FileFrames,
|
|
Width: m.FileWidth,
|
|
Height: m.FileHeight,
|
|
Orientation: m.FileOrientation,
|
|
Projection: m.FileProjection,
|
|
AspectRatio: m.FileAspectRatio,
|
|
ColorProfile: m.FileColorProfile,
|
|
MainColor: m.FileMainColor,
|
|
Colors: m.FileColors,
|
|
Luminance: m.FileLuminance,
|
|
Diff: m.FileDiff,
|
|
Chroma: m.FileChroma,
|
|
HDR: m.FileHDR,
|
|
Watermark: m.FileWatermark,
|
|
Software: m.FileSoftware,
|
|
Error: m.FileError,
|
|
ModTime: m.ModTime,
|
|
CreatedAt: m.CreatedAt,
|
|
CreatedIn: m.CreatedIn,
|
|
UpdatedAt: m.UpdatedAt,
|
|
UpdatedIn: m.UpdatedIn,
|
|
DeletedAt: m.DeletedAt,
|
|
Markers: m.Markers(),
|
|
})
|
|
}
|