
※ 본문은 구글의 <Veo 3 and Veo 3 Fast – new pricing, new configurations and better resolution>를 신속하게 전달하기 위해 AI 번역 및 요약을 사용했습니다. 일부 문장에 오역이나 부자연스러운 표현이 있을 수 있으니 참고하시기 바랍니다.
한줄 요약
Veo 3와 Veo 3 Fast가 **가격 인하(최대 62%↓)**와 함께 세로(9:16)·1080p 영상 지원을 추가하고, Gemini API 안정 버전으로 제공되어 다양한 앱·플랫폼에서 대규모 고품질 영상 제작이 가능해졌다.
프롬프트
The shot is of a lone rock climber skillfully making her ascent up a snow-capped mountain at sunrise. Capturing her as she navigates a section. The camera is close just a few feet away. She looks at the camera with a grin of professional admiration. Wiping her brow with a gloved hand, she looks directly into its lens and says with an impressed, enthusiastic tone, "Veo 3 is now like 50% cheaper and higher quality so go build" before turning to continue her climb.
프롬프트
Generate a high resolution video, shot in ultra-slow motion with a macro lens. The video captures a single drop of magical ink falling into crystal clear water. Instead of merely clouding the water, the ink blossoms into a miniature, living, ethereal diorama of nature, filled with animals and flowers, before gently fading out
프롬프트
A cinematic time-lapse video of a single seed sprouting, growing into a lush plant, and then blooming with vibrant flowers, all set against a subtly changing background that hints at the passage of seasons. Focus on the intricate details of the plant's development and the interplay of light and shadow
Invisible Studio는 Veo 3 기반 숏폼 영상 제작 엔진으로, 출시 8주 만에 최다 사용 모델로 자리잡으며 제작 속도와 생산성을 크게 향상시켰다.
Saga는 아이디어에서 MP4까지 빠르게 연결하는 생성형 AI 플랫폼으로, Veo 3와 Imagen 4를 활용해 시나리오 작성부터 스토리보드·프리비즈·애니매틱스까지 과정을 몇 주가 아닌 단 몇 분 만에 고품질로 시각화할 수 있게 한다.
import timefrom google import genaifrom google.genai import typesclient = 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", ), ) # Waiting for the video(s) to be generated 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")