Veo 3 and Veo 3 Fast now offer 1080p HD, vertical video support, and significant cost reductions.
HM Journal
•
about 2 months ago
•

Google has announced significant enhancements to its Veo 3 and Veo 3 Fast video generation models, making them more accessible and versatile for developers. The updates, effective immediately, include substantial price reductions, the introduction of 1080p HD output, and crucially, support for vertical video formats (9:16 aspect ratio). These advancements aim to empower creators and developers with more powerful and cost-effective tools for generating high-quality video content.
The Gemini API now features Veo 3 and Veo 3 Fast as stable, production-ready models, signaling Google's commitment to their widespread adoption. This move is expected to accelerate innovation in AI-powered video creation across various industries.
One of the most impactful changes is the dramatic decrease in pricing for both Veo 3 and Veo 3 Fast. This strategic move is designed to democratize access to advanced AI video generation, making it a more viable option for a broader range of projects and budgets.
These price adjustments are a clear signal that Google is serious about driving adoption and fostering a vibrant ecosystem around its AI video technologies. It’s not just about making the technology available; it’s about making it economically feasible for creators to experiment and build.
aspectRatio parameter to ‘9:16’ within the Gemini API. This capability is crucial for platforms like TikTok, Instagram Reels, and YouTube Shorts, where vertical video dominates user engagement.resolution parameter to ‘1080p’ significantly elevates the quality and polish of the output. This higher resolution ensures that generated videos are crisp, detailed, and professional-looking, suitable for a wider array of applications, from marketing materials to short films. The combination of vertical format and HD resolution opens up a wealth of creative possibilities for social media campaigns, explainer videos, and immersive mobile experiences.The impact of Veo 3 and Veo 3 Fast is already being felt across various creative industries. Several innovative projects highlight the practical applications of these AI video generation tools:
These examples demonstrate how Veo 3 and Veo 3 Fast are not just theoretical advancements but practical tools empowering creators to build innovative applications and streamline complex workflows. The ability to generate high-quality, contextually relevant video content quickly and affordably is clearly a significant advantage.
Google is providing developers with ample resources to begin integrating Veo 3 into their projects. The Gemini API documentation offers comprehensive guides, and Google AI Studio features a starter app for Veo 3. Additionally, a Veo cookbook is available on GitHub, offering practical examples and code snippets.
google-genai library:```import time
from google import genai
from google.genai import types
client = genai.Client()
operation = client.models.generate_videos(
    model="veo-3.0-fast-generate-001",
    prompt="a close-up shot of a golden retriever playing in a field of sunflowers",
    config=types.GenerateVideosConfig(
      negative_prompt="barking, woofing",
      aspect_ratio="9:16",
      resolution="720p",
    ),
)
while not operation.done:
    time.sleep(20)
    operation = client.operations.get(operation)
    print(operation)
generated_video = operation.response.generated_videos[0]
client.files.download(file=generated_video.video)
generated_video.video.save("golden_retriever.mp4")
`
`
`
It's important to note that all videos generated by Veo will continue to include a digital SynthID watermark, ensuring transparency and traceability. This is a crucial step in responsible AI development, allowing for the identification of AI-generated content.
The enhanced capabilities and reduced costs of Veo 3 and Veo 3 Fast represent a significant leap forward in AI-powered video generation. As developers continue to explore these tools, we can anticipate even more creative and impactful applications emerging in the near future.