import LightButton from "@/components/buttons/LightButton"; import { useRef } from "react"; export default function UploadArea({ setVideoUrl, setSrtUrl, }: { setVideoUrl: (url: string | null) => void; setSrtUrl: (url: string | null) => void; }) { const inputRef = useRef(null); const uploadVideo = () => { const input = inputRef.current; if (input) { input.setAttribute("accept", "video/*"); input.click(); input.onchange = () => { const file = input.files?.[0]; if (file) { setVideoUrl(URL.createObjectURL(file)); } }; } }; const uploadSRT = () => { const input = inputRef.current; if (input) { input.setAttribute("accept", ".srt"); input.click(); input.onchange = () => { const file = input.files?.[0]; if (file) { setSrtUrl(URL.createObjectURL(file)); } }; } }; return (
上传视频 上传字幕
); }