DEV Community

Cover image for Veo 3 is now available for developers in the Gemini API
Logan Kilpatrick for Google AI

Posted on Edited on

Veo 3 is now available for developers in the Gemini API

Hey folks : ) Excited to share that the Veo 3 API is now available. It brings our SOTA model with native audio generation (first of its kind) to devs through a simple API. You can read our launch blog post here: https://developers.googleblog.com/en/veo-3-now-available-gemini-api/

import time
from google import genai
from google.genai import types

client = genai.Client()

operation = client.models.generate_videos(
    model="veo-3.0-generate-preview",
    prompt="Panning wide shot of a purring kitten sleeping in the sunshine under a waterfall",
)

while not operation.done:
    time.sleep(20)
    operation = client.operations.get(operation)

for n, generated_video in enumerate(operation.response.generated_videos):
    client.files.download(file=generated_video.video)
    generated_video.video.save(f"video{n}.mp4")

Enter fullscreen mode Exit fullscreen mode

Happy building : ) and please reach out if you run into any issues.

Top comments (6)

Collapse
 
pengeszikra profile image
Peter Vivo •

How much the price tag?

Collapse
 
parag_nandy_roy profile image
Parag Nandy Roy •

Audio and video generation in one API is always gonna be amazing..

Collapse
 
abhiwantechnology profile image
Abhiwan Technology •

You have to pay to access more features of it. Nowadays most of the India based top Metaverse application development companies were thinking to try this.

Collapse
 
aayyusshh_69 profile image
Aayush Pokharel •

It's not free, is it?

Some comments may only be visible to logged-in visitors. Sign in to view all comments.