Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MotionImageInsertionFramerate

import type { MotionImageInsertionFramerate } from "https://aws-api.deno.dev/v0.4/services/mediaconvert.ts?docs=full";

For motion overlays that don't have a built-in frame rate, specify the frame rate of the overlay in frames per second, as a fraction. For example, specify 24 fps as 24/1. The overlay frame rate doesn't need to match the frame rate of the underlying video.

interface MotionImageInsertionFramerate {
FramerateDenominator?: number | null;
FramerateNumerator?: number | null;
}

§Properties

§
FramerateDenominator?: number | null
[src]

The bottom of the fraction that expresses your overlay frame rate. For example, if your frame rate is 24 fps, set this value to 1.

§
FramerateNumerator?: number | null
[src]

The top of the fraction that expresses your overlay frame rate. For example, if your frame rate is 24 fps, set this value to 24.