import { ffmpeg } from './ffmpeg.ts'; export function extractVideoFrame(file: URL, ss: string = '00:00:01'): Promise { const output = ffmpeg(file, { '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', }); return new Response(output).bytes(); }