Veo 3
Text-to-Video • Google • ProxiedGoogle's video generation model capable of producing high-quality videos with optional audio from text prompts.
| Model Info | |
|---|---|
| Terms and License | link ↗ |
| More information | link ↗ |
| Pricing | View pricing in the Cloudflare dashboard ↗ |
Usage
const response = await env.AI.run( 'google/veo-3', { prompt: 'A golden retriever running through a field of sunflowers on a sunny day', duration: '6s', aspect_ratio: '16:9', resolution: '720p', generate_audio: true, }, { gateway: { id: 'default' }, })console.log(response){ "state": "Completed", "result": { "video": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/google__veo-3/simple-video-generation.mp4" }, "gatewayMetadata": { "keySource": "Unified" }}Examples
Cinematic Scene — Widescreen cinematic video in 1080p
const response = await env.AI.run( 'google/veo-3', { prompt: 'A dramatic drone shot flying through misty mountain peaks at sunrise, with clouds rolling through valleys below', duration: '8s', aspect_ratio: '16:9', resolution: '1080p', generate_audio: true, }, { gateway: { id: 'default' }, })console.log(response){ "state": "Completed", "result": { "video": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/google__veo-3/cinematic-scene.mp4" }, "gatewayMetadata": { "keySource": "Unified" }}Vertical Video — Portrait orientation for social media
const response = await env.AI.run( 'google/veo-3', { prompt: 'A barista expertly pouring latte art, close-up shot with shallow depth of field', duration: '6s', aspect_ratio: '9:16', resolution: '720p', generate_audio: true, }, { gateway: { id: 'default' }, })console.log(response){ "state": "Completed", "result": { "video": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/google__veo-3/vertical-video.mp4" }, "gatewayMetadata": { "keySource": "Unified" }}Short Format — Short video for social media posts
const response = await env.AI.run( 'google/veo-3', { prompt: 'A timelapse of a flower blooming, soft natural lighting', duration: '4s', aspect_ratio: '16:9', resolution: '720p', generate_audio: true, }, { gateway: { id: 'default' }, })console.log(response){ "state": "Completed", "result": { "video": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/google__veo-3/short-format.mp4" }, "gatewayMetadata": { "keySource": "Unified" }}Silent Video — Video without audio generation
const response = await env.AI.run( 'google/veo-3', { prompt: 'Abstract flowing liquid metal morphing into geometric shapes', duration: '6s', aspect_ratio: '16:9', resolution: '720p', generate_audio: false, }, { gateway: { id: 'default' }, })console.log(response){ "state": "Completed", "result": { "video": "https://pub-04a6d208d361438ea01b797e6973bd19.r2.dev/catalog/google__veo-3/silent-video.mp4" }, "gatewayMetadata": { "keySource": "Unified" }}Parameters
stringrequiredText prompt describing the video to generatestringBase64-encoded reference image for i2vstringrequireddefault: 6senum: 4s, 6s, 8sVideo durationstringrequireddefault: 16:9enum: 16:9, 9:16, 1:1Video aspect ratiostringrequireddefault: 720penum: 720p, 1080pVideo resolutionbooleanrequireddefault: trueWhether to generate audio with the videostringformat: uriURL to the generated video