photoprism/pkg/fs/codec.go
Michael Mayer 26ca084699 Videos: Cache embedded media to allow streaming and transcoding #3764
This is a follow-up improvement for the following feature requests that
have already shipped with our stable release:

- Live Photos: Add support for Samsung Motion Photos #439
- Live Photos: Add support for Google Camera Motion Photos #1739

Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-09-24 17:13:06 +02:00

9 lines
116 B
Go

package fs
// Required file format decoders and encoders.
import (
_ "image/gif"
_ "image/jpeg"
_ "image/png"
)