2020-12-12 17:20:31 +01:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
_ "image/gif" // Import for image.
|
|
|
|
_ "image/jpeg"
|
|
|
|
_ "image/png"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FileCodec string
|
|
|
|
|
|
|
|
const (
|
2022-04-12 13:28:28 +02:00
|
|
|
CodecAVC FileCodec = "avc1"
|
|
|
|
CodecHEVC FileCodec = "hvc1"
|
|
|
|
CodecAV1 FileCodec = "av01"
|
|
|
|
CodecJpeg FileCodec = "jpeg"
|
2020-12-12 17:20:31 +01:00
|
|
|
)
|