UNPKG

remotion

Version:

Make videos programmatically

11 lines (10 loc) 438 B
import type { RefObject } from 'react'; export declare const useRequestVideoCallbackTime: ({ mediaRef, mediaType, lastSeek, onVariableFpsVideoDetected, }: { mediaRef: RefObject<HTMLAudioElement | HTMLVideoElement | null>; mediaType: "audio" | "video"; lastSeek: import("react").MutableRefObject<number | null>; onVariableFpsVideoDetected: () => void; }) => RefObject<{ time: number; lastUpdate: number; } | null>;