Question custom videomodes

Hi for a project we use custom video-mode’s
which does exactly what we want

<video-modes>
    <video-mode>
        <id>1024x768p60</id>
        <width>1024</width>
        <height>768</height>
        <time-scale>60000</time-scale>
        <duration>1000</duration>
        <cadence>800</cadence>
    </video-mode>
</video-modes>

one question though how do i specify cadence and time-scale for fractional framerates
like 59.94 if even supported

in video_format.cpp i found

{video_format::x720p5994, 1, 1280, 720, 1280, 720, 60000, 1001, L"720p5994", {801, 800, 801, 801, 801}},

thanks in front

The cadence value should be a comma or space separate list of values, which when combined with the framerate will match 48000. I think it was 2.4.2 that introduced some better validation of these values and will complain if the provided values are wrong (there is some maths being done to check the values add up correctly over some number of seconds)

Thanks Julian