UNPKG

@loaders.gl/video

Version:

Framework-independent loaders and writers for video (MP4, WEBM, ...)

23 lines 719 B
import type { LoaderOptions } from '@loaders.gl/loader-utils'; import parseVideo from "./lib/parsers/parse-video.js"; export type VideoLoaderOptions = LoaderOptions & { video: {}; }; /** * Loads a platform-specific image type that can be used as input data to WebGL textures */ export declare const VideoLoader: { readonly dataType: HTMLVideoElement; readonly batchType: never; readonly name: "Video"; readonly id: "video"; readonly module: "video"; readonly version: any; readonly extensions: ["mp4"]; readonly mimeTypes: ["video/mp4"]; readonly options: { readonly video: {}; }; readonly parse: typeof parseVideo; }; //# sourceMappingURL=video-loader.d.ts.map