529103462c
Related Issues: - Samsung: Initial support for Motion Photos (#439) - Google: Initial support for Motion Photos (#1739) - Metadata: Flag Samsung/Google Motion Photos as Live Photos (#2788) Related Pull Requests: - Live Photos: Add Support for Samsung Motion Photos (#3588) - Samsung: Improved support for Motion Photos (#3660) - Google: Initial support for Motion Photos (#3709) - Google: Add support for Motion Photos (#3722) Signed-off-by: Michael Mayer <michael@photoprism.app>
18 lines
413 B
Go
18 lines
413 B
Go
package meta
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/pkg/video"
|
|
)
|
|
|
|
const CodecUnknown = ""
|
|
const CodecAv1 = string(video.CodecAV1)
|
|
const CodecAvc1 = string(video.CodecAVC)
|
|
const CodecHvc1 = string(video.CodecHVC)
|
|
const CodecJpeg = "jpeg"
|
|
const CodecHeic = "heic"
|
|
const CodecXMP = "xmp"
|
|
|
|
// CodecAvc returns true if the video codec is AVC.
|
|
func (data Data) CodecAvc() bool {
|
|
return data.Codec == CodecAvc1
|
|
}
|