Additional output format Canopus HQX for Edius Editing

It would be nice to have for Video AI an output format without double conversion. For example an Canopus HQX for all Grass Valley products
Thanks in advance

Looks like it’s already in the Topaz version of ffmpeg.
add:
, { "text": "HQX", "encoder": "-c:v dnxhd -profile:v dnxhr_hqx -pix_fmt gbrp10le", "ext": [ "mkv", "mp4", "mov" ], "maxBitRate": 800, "transcode": "aac -b:a 320k -ac 2", "minSize": [1,1], "maxSize": [16384,8704], "maxBitDepth": 12 }
anywhere as another entry in your encoders.json file. (C:\ProgramData\Topaz Labs LLC\Topaz Video AI\models\encoders.json [on Windows {No idea where on Mac}])

That will get it to show in the GUI.
Read this post on stackexchange for more details on other options you might try.
Supported pixel formats: yuv422p yuv422p10le yuv444p10le gbrp10le
I just chose the last one because it looked closest to what TVAI processes in.

Thanks for the hint. Than I Have to learn a little bit scripting O:)