Hallo everyone,

I want to benchmark my hardware and get a clou, which module uses most time during export. For this I want darktable-cli to export each picture given by .xmp-files, not by RAW-Input files, by using a bash script.

This works with RAW:

for file in *.nef
do
    echo $file >> benchmark-dt_$HOSTNAME.txt;
    start=$(date +%s)
darktable-cli "$file" "${file%.*}".jpg --width 3072 --height 3072 --hq true --verbose >> benchmark-dt_$HOSTNAME.txt
    stop=$(date +%s)
echo "time used:" $(($stop - $start)) "sec." >> benchmark-dt_$HOSTNAME.txt;
done

But this only exports version 0 of the RAW, not Version 1 ... n created by duplicating in lighttable.

How do I get darktable-cli to export any version available?

Thanks.

--

regards
Bernhard

http://www.bilddateien.de

____________________________________________________________________________
darktable user mailing list
to unsubscribe send a mail to [email protected]

Reply via email to