photoprism/internal/meta/codec.go

17 lines
340 B
Go
Raw Normal View History

package meta
import (
"github.com/photoprism/photoprism/pkg/video"
)
const CodecUnknown = ""
const CodecAvc1 = string(video.CodecAVC)
const CodecJpeg = "jpeg"
const CodecHeic = "heic"
const CodecXMP = "xmp"
// CodecAvc returns true if the video format is MPEG-4 AVC.
func (data Data) CodecAvc() bool {
return data.Codec == CodecAvc1
}