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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const axios = require('axios');
const FormData = require('form-data');
const fs = require('fs');
const path = require('path');
function toBase64(filePath) {
const data = fs.readFileSync(path.resolve(filePath));
return Buffer.from(data).toString('base64');
}
const api_key = "YOUR API-KEY";
const url = "https://api.segmind.com/v1/ray-flash-2-720p";
const reqBody = {
"loop": false,
"prompt": "a young boy riding a red bicycle in grand canyon valleys",
"duration": 5,
"aspect_ratio": "16:9",
"start_image_url": "toB64('null')",
"end_image_url": "toB64('null')"
};
(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
for (const key in reqBody) {
if (reqBody.hasOwnProperty(key) && typeof reqBody[key] === 'string' && reqBody[key].match(/\.(jpg|jpeg|png|gif)$/)) {
const base64String = toBase64(reqBody[key]);
formData.append(key, base64String);
}
}
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);
}
})();
Whether the video should loop, with the last frame matching the first frame for smooth, continuous playback.
Text prompt for video generation
Duration of the output.
Allowed values:
Aspect ratio of the video.
Allowed values:
URL of an image to use as the starting frame
URL of an image to use as the ending frame
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.
The Luma ray-Flash-2-720p model is a cutting-edge text-to-video generation system from Luma. Built upon a multi-modal architecture, it empowers content creators and marketers to quickly and affordably produce realistic 720p video content with coherent motion and detailed visuals based on simple text prompts, offering a faster and cheaper alternative to Ray 2.
Realistic Video Generation - Creates videos with coherent motion and detailed visuals based on text input, enabling high-quality outputs.
Natural Motion Synthesis - Generates videos with lifelike movement of objects and characters, enhancing realism.
Photorealistic Detail Rendering - Produces videos with a high level of visual fidelity, including realistic textures, lighting, and shadows.
Physics-based Simulations - Capable of generating videos that incorporate realistic physical interactions, such as liquids and explosions.
Cinematic Scene Composition - Facilitates the creation of visually appealing and well-structured video scene
Social Media Content Creation - Ideal for generating engaging short-form video content for platforms like TikTok and Instagram Reels due to its fixed duration options and aspect ratio flexibility.
Digital Advertising - Enables the rapid creation of compelling video ads with realistic visuals to capture audience attention.
Background Visuals - The looping option allows for the creation of seamless background videos for websites or displays.
Concept Visualization - Useful for artists and designers to quickly visualize and present abstract or surrealist concepts in video form
Output Resolution: 720p
Video Durations: Generates videos of 5 seconds or 9 seconds in length.
Input: Text prompts & Start and end frames (images)
The Luma ray-Flash-2-720p model offers a powerful yet cost-effective solution for generating high-quality 720p video content from text prompts. Its speed, realistic output capabilities, and fixed duration options make it a valuable tool for content creators, marketers, and digital artists seeking engaging visual assets for various applications.