UNPKG

@remotion/media-parser

Version:

A pure JavaScript library for parsing video files

9 lines (8 loc) 354 B
import type { ParseMediaOnError } from './options'; import type { ParserState } from './state/parser-state'; import type { ThrottledState } from './throttled-progress'; export declare const parseLoop: ({ state, throttledState, onError, }: { state: ParserState; throttledState: ThrottledState; onError: ParseMediaOnError; }) => Promise<void>;