Your files works fine over here. You can try some other ffmpeg binary to see if that helps.
http://www.osxexperts.net/ffmpeg/ffmpegexperts.htmlAll binaries are located inside cr2hdr.app/Contents/
You might wanna try another version of dcraw and exiftool as well. Hard to tell in this case what,s going on. Try on another filesystem if you think that,s the case.
or...
If you are working with cr2hdr.app you can change code inside the source folder. When you,re done you double click
Build_dmg_package.command to build a new dmg file. You have to change code in four scripts since they work in parallell. You can start by changing stuff in the first script and run tests on one dng sequence.
!A faster way is to work from the command scripts inside the cr2hdr.app itself. The same file are inside
cr2hdr.app/Contents only they,re suffixed as command files!
Anyway. Back to source folder...
FFmpeg_produce_01.txt
FFmpeg_produce_02.txt
FFmpeg_produce_03.txt
FFmpeg_produce_04.txt
I,d suggest scroll down to the bottom of FFmpeg_produce_01.txt file and maybe try do something with the
find "$out""$out3""$name""$sl". -maxdepth 1 -iname '*.dng' -print0 | xargs -0 dcraw....The find command at the bottom affects the ProRes4444 output activated from the ProRes4444 to mov menu.
#check if ProRes4444 settings file contains information
if ! [ x"$(cat /tmp/FFmpeg_settings | grep -v 'HL\|AWB\|dcrawA')" = x ]
then
mkdir -p "$out""$out2"$(date +%F)_ProRes4444
#export ProRes4444
find "$out""$out3""$name""$sl". -maxdepth 1 -iname '*.dng' -print0 | xargs -0 dcraw +M $h2 $o $S -c -6 -W -q 3 $gam $wb $pix | ffmpeg $wav -f image2pipe -vcodec ppm -r "$fps" -i pipe:0 $sd -vcodec prores_ks -pix_fmt yuv444p10 -n -r "$fps" $cin$cin_01$cin_02$cin_03$cin_01b$cin_02b$cin_03b$scale$denoise$sharpen "$out""$out2"$(date +%F)_ProRes4444/"$name".mov
fi