I forgot to mention, that with 8bit 4K JPGs I produce 4K 8bit 444 MP4 video this way:
1. Import the JPG sequence in AE, sRGB + 8bpc, save project file, close AE
2. Put the project file in queue in AME, start frame serving with the Advanced FrameServer, RGB24 preset (video only), this is the "frameserver.avi"
3. In the AviSynth file (frameserver.avs) I have this:
AVISource("E:\timelapse_rendering\frameserver.avi", audio=false).AssumeFPS(24,1)
ConvertToYV24(matrix="Rec709")
4. Start the 4k_8bit_444.bat file:
ffmpeg -r 24 -i "frameserver.avs" -aspect 16:9 -s 3840x2160 -c:v libx264 -preset slow -crf 13 -profile:v high444 -pix_fmt yuv444p -x264opts keyint=24:min-keyint=1 -g 24 -filter:v unsharp=5:5:0.5:5:5:0.5 -x264opts colorprim=bt709:transfer=bt709:colormatrix=bt709 -r 24 "4k_8bit_444.mp4"
pause
5. As the rendering is finished stop frame serving, close AME and watch the produced video
Is there a 10bit frameserving solution somehow, because if it exists, then with
AviSynth high bit-depth and ffmpeg x264-10bit codec we could produce 4K 10bit 444 MP4 or with ffmpeg prores_ks codec 4K 10bit 444 MOV.