photoprism/internal/meta/video.go
Michael Mayer 5822a26b8c Metadata: Add test for mov video JSON files #3559
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-08-15 14:19:08 +02:00

19 lines
414 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.CodecHEVC)
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
}