const file = await fs.readFile("./video.mp4");
const response = await fetch("https://api.vidjutsu.ai/v1/upload", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.VIDJUTSU_API_KEY}`,
"Content-Type": "video/mp4",
},
body: file,
});
const data = await response.json();
console.log(data.url);