photoprism/internal/commands/convert.go
Michael Mayer 02f605e6a8 Backend: Improve command help #187
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-22 10:35:00 +01:00

43 lines
847 B
Go

package commands
import (
"time"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/photoprism"
"github.com/urfave/cli"
)
// Converts RAW files to JPEG images, if no JPEG already exists
var ConvertCommand = cli.Command{
Name: "convert",
Usage: "Converts originals in other formats to JPEG",
Action: convertAction,
}
func convertAction(ctx *cli.Context) error {
start := time.Now()
conf := config.NewConfig(ctx)
if conf.ReadOnly() {
return config.ErrReadOnly
}
if err := conf.CreateDirectories(); err != nil {
return err
}
log.Infof("converting RAW images in %s to JPEG", conf.OriginalsPath())
convert := photoprism.NewConvert(conf)
convert.Start(conf.OriginalsPath())
elapsed := time.Since(start)
log.Infof("image conversion completed in %s", elapsed)
return nil
}