Re: [darktable-dev] Using darktable with Go to convert raw to jpeg

2018-11-12 Thread Heiko Bauke
Hi, Am Montag, 12. November 2018 schrieb Michael Mayer: > On Mon, Nov 12, 2018 at 8:54 AM, Heiko Bauke wrote: > > although I never investigated these compatibility issues I suspect one > > cannot expect much compatibility here. Different raw converters may work > > very differently internally.

Re: [darktable-dev] Using darktable with Go to convert raw to jpeg

2018-11-12 Thread Michael Mayer
On Mon, Nov 12, 2018 at 8:54 AM, Heiko Bauke wrote: > although I never investigated these compatibility issues I suspect one cannot > expect much compatibility here. Different raw converters may work very > differently internally. In particular closed source programs are a black box. Could in f

Re: [darktable-dev] Using darktable with Go to convert raw to jpeg

2018-11-11 Thread Heiko Bauke
Moin Moin, Am Montag, 12. November 2018 schrieb Michael Mayer: > Moin Moin, > We are grateful for every little piece of advice concerning XMP > sidecar files and you are welcome to write in our wiki. I still don't > understand how compatible Darktable is with Adobe Lightroom and other > applicati

Re: [darktable-dev] Using darktable with Go to convert raw to jpeg

2018-11-11 Thread Michael Mayer
Moin Moin, after I had a detailed look into cgo and libdarktable yesterday, we decided to continue using darktable-cli as this doesn't interfere with our build process on other operating systems and leaves the option open to use alternative raw converters, should darktable not be available (sips,

Re: [darktable-dev] Using darktable with Go to convert raw to jpeg

2018-11-10 Thread Michael Mayer
Thank you! Some users were asking for a single binary they can download and run. I already figured that's going to be complicated after I checked the dependencies of libdarktable.so, also there is no statically linkable version of libtensorflow.so yet. At least we want to provide a small docker i

Re: [darktable-dev] Using darktable with Go to convert raw to jpeg

2018-11-10 Thread johannes hanika
hi! looks like an interesting project you're working on. if you have a look at the source of darktable-cli, it's really short: https://github.com/darktable-org/darktable/blob/master/src/cli/main.c you could probably link your code directly to libdarktable.so the same way. i don't understand you