import { ffmpeg } from './ffmpeg.ts'; export function extractVideoFrame( input: URL | ReadableStream, ss: string = '00:00:01', opts?: { ffmpegPath?: string | URL }, ): Promise { const output = ffmpeg(input, { 'ss': ss, // Seek to timestamp 'frames:v': '1', // Extract only 1 frame 'q:v': '2', // High-quality JPEG (lower = better quality) 'f': 'image2', // Force image format 'loglevel': 'fatal', }, opts); return new Response(output).bytes(); }