2022-04-15 09:42:07 +02:00
|
|
|
package video
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Type represents a video format type.
|
|
|
|
type Type struct {
|
2023-09-22 23:59:56 +02:00
|
|
|
Codec Codec
|
|
|
|
FileType fs.Type
|
|
|
|
WidthLimit int
|
|
|
|
HeightLimit int
|
|
|
|
Public bool
|
2022-04-15 09:42:07 +02:00
|
|
|
}
|