// Render captions on a video using ApeClip SDK (JavaScript)import { ApeClipClient } from "@apeclip/sdk";const apeclip = new ApeClipClient({ apiKey: process.env.APECLIP_API_KEY });async function renderCaptions() { const result = await apeclip.video.renderCaptions({ video: "./input.mp4", template: "red-dead" language: "en" }); console.log("Captioned video:", result.outputVideo);}renderCaptions();