UNPKG

@remotion/media-parser

Version:

A pure JavaScript library for parsing video files

6 lines (5 loc) 220 B
import type { MediaParserKeyframe } from './options'; export declare function findLastKeyframe<T extends MediaParserKeyframe>({ keyframes, timeInSeconds, }: { keyframes: T[]; timeInSeconds: number; }): T | null;