photoprism/internal/commands/convert.go
Vedhavyas Singareddi 4edfc4fa4c error chacks and minor api refactoring (#92)
* error chacks and minor api refactoring

* consistant naming
2019-01-15 14:00:42 +01:00

35 lines
726 B
Go

package commands
import (
"fmt"
"github.com/photoprism/photoprism/internal/context"
"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 RAW originals to JPEG",
Action: convertAction,
}
func convertAction(ctx *cli.Context) error {
conf := context.NewConfig(ctx)
if err := conf.CreateDirectories(); err != nil {
return err
}
fmt.Printf("Converting RAW images in %s to JPEG...\n", conf.OriginalsPath())
converter := photoprism.NewConverter(conf.DarktableCli())
converter.ConvertAll(conf.OriginalsPath())
fmt.Println("Done.")
return nil
}