import { useState } from "react"; import { ProgressCard } from "@/components/common/progress-card"; import { useTranslation } from "@/contexts/i18n-context"; import { useToolProcessor } from "@/hooks/use-tool-processor"; import { format } from "@/lib/format"; import { useFileStore } from "@/stores/file-store"; export function VideoToWebpSettings() { const { t } = useTranslation(); const s = t.toolSettings["video-to-webp"]; const { files } = useFileStore(); const { processFiles, processAllFiles, processing, error, progress } = useToolProcessor("video-to-webp"); const [fps, setFps] = useState(12); const [width, setWidth] = useState(480); const [quality, setQuality] = useState(75); const [loop, setLoop] = useState(true); const hasFile = files.length > 0; const hasMultiple = files.length > 1; const handleProcess = () => { const settings = { fps, width, quality, loop }; if (hasMultiple) { processAllFiles(files, settings); } else { processFiles(files, settings); } }; return (
setFps(Number(e.target.value))} className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground" />
setWidth(Number(e.target.value))} className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground" />
setQuality(Number(e.target.value))} className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground" />
{error &&

{error}

} {processing ? ( ) : ( )}
); }