VideoGen은 귀하의 전체 생성 미디어 스택을 실행하므로 사람들이 원하는 것을 만드는 데 집중할 수 있습니다.
모든 요청은 작업에 가장 적합한 AI 모델에서 실행됩니다. 우리는 50,000명 이상의 고객의 실제 작업 부하에서 플래그십 모델을 벤치마킹합니다. 글로벌 AI 컴퓨팅 네트워크에서 제공됩니다.
추가 설정 없이 바로 삽입, 스트리밍 또는 다운로드할 수 있습니다. 내장 스토리지, 트랜스코딩 및 글로벌 전송 기능이 포함되어 있습니다.
영상, 이미지, 음성, 아바타를 위한 단일 API. 개별 도구를 호출하거나 스크립트-투-비디오(script-to-video) 또는 보이스오버-투-비디오(voiceover-to-video)와 같은 워크플로우를 실행하세요.
@videogen/sdk npm 및 videogen PyPI에 있습니다. 완전히 유형화되었으며, 우리의 OpenAPI 사양에서 자동 생성되었습니다.
생산 파이프라인을 위한 웹훅 및 폴링. VideoGen을 귀하의 CRM, CMS 또는 예약 작업에 연결하세요.
5분 안에 데모를, 15분 안에 프로덕션 준비를 완료하세요: REST API, 사전 빌드된 SDK 또는 다음을 사용하세요 예제 프로젝트.
CombinatorSDK를 설치하고 즉시 비디오 생성을 시작하세요.
import { VideoGen, pollWorkflowRun } from "@videogen/sdk";
const vg = new VideoGen({ apiKey: "sk_videogen_live_..." });
const started = await vg.workflows.scriptToVideo({
script:
"Staying hydrated keeps your body and mind running at their best. Drinking enough water boosts your energy, focus, and mood. Keep a water bottle nearby and sip throughout the day.",
visualStyle: {
type: "AI_IMAGE",
aiStyle: "loose watercolor illustration with visible brushstrokes and soft color bleeds",
},
visualPacing: "MEDIUM",
quality: "HIGH",
remixActions: [
{ type: "ENABLE_CAPTIONS" },
{
type: "CONVERT_IMAGES_TO_VIDEOS",
motionPrompt: "slow cinematic push-in",
muteOutputVideos: true,
quality: "HIGH",
},
],
});
const workflowRunId = started?.workflowRunId;
if (typeof workflowRunId !== "string") {
throw new Error("Missing workflowRunId");
}
const run = await pollWorkflowRun({ client: vg, workflowRunId });
console.log(run.status, started?.projectUrl);npm install @videogen/sdk