Gemini Omni 1.1 Flash
텍스트로 AI 영상 만들기이미지를 동영상으로 변환레퍼런스 기반 영상 생성$0.03 / 초 당
Google Omni 1.1 Flash는 대화형 개선, 비디오 확장 및 해상도 확대 기능을 통해 멀티모달 입력에서 비디오를 생성하고 편집합니다.
입력
모드
가격을 확인하려면 필수 입력란을 모두 작성하세요.
Text To Video · 5s
유휴 출력 사용 불가
| 길이 | 해상도 | 유형 | 가격 |
|---|---|---|---|
| output second | 360p | 이미지를 동영상으로 변환 | $0.03 / s |
| 레퍼런스 기반 영상 생성 | $0.03 / s | ||
| 텍스트로 AI 영상 만들기 | $0.03 / s | ||
| 720p | 이미지를 동영상으로 변환 | $0.1002 / s | |
| 레퍼런스 기반 영상 생성 | $0.1002 / s | ||
| 텍스트로 AI 영상 만들기 | $0.1002 / s | ||
| 1080p | 이미지를 동영상으로 변환 | $0.15 / s | |
| 레퍼런스 기반 영상 생성 | $0.15 / s | ||
| 텍스트로 AI 영상 만들기 | $0.15 / s | ||
| 4K | 이미지를 동영상으로 변환 | $0.30 / s | |
| 레퍼런스 기반 영상 생성 | $0.30 / s | ||
| 텍스트로 AI 영상 만들기 | $0.30 / s |
엔드포인트
POST
https://pollo.ai/api/platform/v1/generation/google/gemini-omni-1-1-flash/video모드
입증
API 키를 x-api-key 요청 헤더에 포함시켜 전달하세요.
x-api-key: YOUR_API_KEYAPI 키 보기작업 제출
모델 생성 작업을 생성합니다.
요구
curl -X POST 'https://pollo.ai/api/platform/v1/generation/google/gemini-omni-1-1-flash/video' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-d '{
"input": {
"prompt": "A close-up of raindrops rippling across a still pond in slow motion, natural daylight",
"aspectRatio": "16:9",
"duration": 5
}
}'응답(200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}상태 확인
생성이 완료될 때까지 작업 상태 엔드포인트를 주기적으로 확인합니다.
HTTP 요청
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEY응답(200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"credit": 12,
"costUsd": 0.12,
"generations": [
{
"id": "generation_01",
"createdDate": "2026-07-13T07:00:00.000Z",
"updatedDate": "2026-07-13T07:00:12.000Z",
"status": "succeeded",
"failMsg": null,
"url": "https://example.com/output.mp4",
"mediaType": "video"
}
]
}Webhook
선택적으로, 작업 성공 또는 실패 시 콜백을 수신하기 위해 webhookUrl을 포함할 수 있습니다.
선택적 요청 필드
{
"input": {
"prompt": "A close-up of raindrops rippling across a still pond in slow motion, natural daylight",
"aspectRatio": "16:9",
"duration": 5
},
"webhookUrl": "https://example.com/webhooks/pollo"
}개요
선택한 엔드포인트 및 모드에 대한 입력 필드입니다.
| 필드 | 유형 | 필수의 | 화면 설명 |
|---|---|---|---|
| prompt | string | 예 | Text prompt describing the content to generate. |
| aspectRatio | string | 아니요 | Output aspect ratio, as width:height (e.g. 16:9). |
| duration | integer | 아니요 | The duration of the generated video, in seconds. |
| resolution | string | 아니요 | Output resolution of the generated media (e.g. 720p, 1080p, 2K, 4K). Values are case-insensitive. |
오류
일반적인 공개 API 응답 코드.
- 400
- 잘못된 입력 또는 모델 제약 조건입니다.
- 401
- API 키가 없거나 유효하지 않습니다.
- 403
- API 키로는 접근 권한이 없습니다.
- 404
- 모델 또는 작업을 찾을 수 없습니다.
모델 문서화는 곧 제공될 예정입니다.