1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const axios = require('axios');
const FormData = require('form-data');
const api_key = "YOUR API-KEY";
const url = "https://api.segmind.com/v1/veo-2";
const reqBody = {
"seed": 965002,
"prompt": "a red panda riding a skateboard",
"duration": 5,
"aspect_ratio": "16:9"
};
(async function() {
try {
const formData = new FormData();
// Append regular fields
for (const key in reqBody) {
if (reqBody.hasOwnProperty(key)) {
formData.append(key, reqBody[key]);
}
}
// Convert and append images as Base64 if necessary
const response = await axios.post(url, formData, {
headers: {
'x-api-key': api_key,
...formData.getHeaders()
}
});
console.log(response.data);
} catch (error) {
console.error('Error:', error.response ? error.response.data : error.message);
}
})();
Random seed. Omit for random generations
Text prompt for video generation
Duration of the output video
Allowed values:
Aspect ratio of the output video
Allowed values:
To keep track of your credit usage, you can inspect the response headers of each API call. The x-remaining-credits property will indicate the number of remaining credits in your account. Ensure you monitor this value to avoid any disruptions in your API usage.
Veo 2 is Google's latest state-of-the-art video generation model, designed for creators, filmmakers, and businesses seeking incredibly high-quality, realistic video outputs. It offers significant advancements in understanding cinematography and real-world physics, providing unparalleled creative control and detail in generated videos.
High-Quality Video Generation - Veo 2 creates incredibly high-quality videos across a wide range of subjects and styles, achieving state-of-the-art results in human evaluations against leading models.
Enhanced Realism and Fidelity - This model significantly improves upon previous AI video models by delivering greater detail, enhanced realism, and a reduction in unwanted artifacts like extra fingers or unexpected objects.
Advanced Motion Capabilities - Veo 2 demonstrates an improved understanding of real-world physics and the nuances of human movement and expression, resulting in more accurate and realistic motion in generated videos.
Greater Camera Control Options - Users can precisely direct Veo 2 to create a wide array of shot styles, angles, and movements by specifying cinematic elements such as genre, lens (e.g., 18mm), and effects (e.g., shallow depth of field) in their prompts.
Cinematic Understanding - The model understands the unique language of cinematography, allowing users to request specific cinematic techniques and achieve desired visual outcomes.
SynthID Watermarking - Outputs from Veo 2 include an invisible SynthID watermark, helping to identify them as AI-generated and reduce the spread of misinformation.
Creative Content for YouTube Shorts - YouTube creators can leverage Veo 2 to explore innovative and high-quality video backgrounds and elements for their short-form content.
Enhancing Creative Workflows on Vertex AI - Enterprise customers can utilize Veo 2 within Vertex AI to streamline and elevate their creative production processes.
Storytelling and Filmmaking with VideoFX - Creatives, including filmmakers, can use Veo 2 through the VideoFX tool to bring their narratives to life with advanced video generation capabilities.
Visual Prototyping and Concept Visualization - Businesses and individuals can quickly generate realistic video prototypes and visualizations for various projects and presentations.
Marketing and Advertising Video Production - The high quality and cinematic control of Veo 2 can be applied to create engaging and professional video content for marketing and advertising campaigns
Veo 2 represents a significant leap forward in AI-powered video generation, offering state-of-the-art quality, unprecedented cinematic control, and the ability to create highly realistic videos.