mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-19 01:27:49 +00:00
Apply the RawTherapee stderr rejection (raw.DecoderErrors) only for a gated set of formats (default .cr3) instead of every RAW format. RawTherapee prints "Cannot use camera white balance" for any sensor it cannot read, including bodies whose default-WB render is fine, so for formats it alone can decode (e.g. .raw, .kdc) the warning-based discard left nothing to index. CR3 is unchanged: a magenta render warns and falls back to the embedded preview.
34 lines
1.2 KiB
Go
34 lines
1.2 KiB
Go
/*
|
|
Package raw provides command builders and helpers for converting camera RAW
|
|
images to JPEG with Darktable, RawTherapee, and ExifTool, including the
|
|
heuristics that decide, per format, when to discard an untrustworthy decode and
|
|
when to skip an unusable embedded preview.
|
|
|
|
Copyright (c) 2018 - 2026 PhotoPrism UG. All rights reserved.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under Version 3 of the GNU Affero General Public License (the "AGPL"):
|
|
<https://docs.photoprism.app/license/agpl>
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
The AGPL is supplemented by our Trademark and Brand Guidelines,
|
|
which describe how our Brand Assets may be used:
|
|
<https://www.photoprism.app/trademark/>
|
|
|
|
Feel free to send an email to hello@photoprism.app if you have questions,
|
|
want to support our work, or just want to say hello.
|
|
|
|
Additional information can be found in our Developer Guide:
|
|
<https://docs.photoprism.app/developer-guide/>
|
|
*/
|
|
package raw
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
)
|
|
|
|
var log = event.Log
|