UNPKG

@googleforcreators/media

Version:

Functionality for creating and working with media resources in the Web Stories editor.

9 lines 287 B
/** * Returns a still image from a given video element. * * @param video Video element. * @return JPEG image blob. */ declare function getImageFromVideo(video: HTMLVideoElement): Promise<Blob | null>; export default getImageFromVideo; //# sourceMappingURL=getImageFromVideo.d.ts.map