Overview
**Veo3.1 Video 1080p** is a video generation model available on UniAll AI for teams that need high-quality short clips with flexible input control. The public model id is **`veo3.1-video-1080p`**.
It supports common AI video workflows including text-to-video, image-to-video, first/last frame generation, reference-image guided generation, video editing, and video extension. It is designed for asynchronous generation because video jobs take longer than text or image requests.
What Veo3.1 Video 1080p supports
| Area | Supported | |---|---| | Model id | `veo3.1-video-1080p` | | Output type | Video | | API style | Async video generation | | Endpoint | `POST /v1/videos/generations` | | Billing unit | Per second | | Duration options | 4s, 6s, 8s | | Aspect ratios | 16:9, 9:16 | | Resolutions | 720p, 1080p, 4K options available in the family | | Audio toggle | Supported via `generate_audio` | | Output count | 1 video per generation |
Generation modes
Veo3.1 Video 1080p is useful when you need more control than a simple text-only prompt.
- **Text to video**: generate a clip from a written prompt.
- **Image to video**: animate or transform a reference image.
- **First/last frame**: guide the beginning and ending composition with two images.
- **Reference images**: use 2–3 images to preserve product, character, or style references.
- **Video to video**: edit or continue from a source video.
- **Video extension**: extend an existing clip with prompt guidance.
Who should use it
Veo3.1 Video 1080p is a good fit for:
- Creative teams producing short video concepts and storyboards.
- E-commerce teams making product reveal or lifestyle clips.
- Ad teams testing 9:16 vertical and 16:9 horizontal creatives.
- Developers building AI video tools, internal content workflows, or automated media pipelines.
- Agencies and platforms that need API-based generation rather than manual-only tools.
If cost and speed are more important than maximum quality, a fast variant may be a better fit. If final delivery needs higher resolution than 1080p, consider a 4K variant. For balanced quality and cost, `veo3.1-video-1080p` is often the practical middle option.
API usage
Use the async video generation endpoint:
```http POST /v1/videos/generations Content-Type: application/json ```
Example request:
```json { "model": "veo3.1-video-1080p", "generation_mode": "text_to_video", "prompt": "A cinematic product reveal of a matte black smart speaker on a glass table, soft studio lighting, slow camera push-in.", "duration": 8, "aspect_ratio": "16:9", "resolution": "1080p", "generate_audio": true } ```
Example image-to-video request:
```json { "model": "veo3.1-video-1080p", "generation_mode": "reference_image_to_video", "prompt": "Animate the product with a smooth rotating camera move, premium commercial lighting, clean background.", "image_url": "https://example.com/product.png", "duration": 6, "aspect_ratio": "9:16", "resolution": "1080p" } ```
Important parameters include `prompt`, `duration`, `aspect_ratio`, `resolution`, `generate_audio`, and mode-specific media fields such as `image_url`, `reference_image_urls`, `first_image_url`, `last_image_url`, or `video_url`.
Pricing angle
On UniAll AI, Veo3.1 Video 1080p is billed per generated second. The listed user price for 1080p video is **$0.136 per second**. Audio-enabled 1080p generation is listed at **$0.272 per second**. Failed generations are eligible for refund when the platform marks them as failed.
Because pricing is duration-based, a simple estimate is:
```text estimated cost = unit price per second × selected duration ```
For example, an 8-second 1080p video without audio would be estimated at 8 × $0.136 = **$1.088** before any account-specific adjustments.
Comparison guidance
Choose **Veo3.1 Video 1080p** when you want a balance of quality, API flexibility, and predictable per-second billing. Choose a fast variant when iteration speed or lower cost matters more. Choose a 4K variant when final output resolution is the priority.
For production workflows, use clear prompts, provide reference images when visual consistency matters, and keep generation mode aligned with the input assets you actually have.
常见问题
What is the public model id for Veo3.1 Video 1080p API?
The public model id is `veo3.1-video-1080p`. Use it in the `model` field when calling `POST /v1/videos/generations`.
What generation modes does Veo3.1 Video 1080p support?
It supports text-to-video, image-to-video, first/last frame generation, reference-image guided video, video-to-video editing, and video extension workflows.
How is Veo3.1 Video 1080p priced on UniAll AI?
It is billed per generated second. The listed user price for 1080p video is $0.136 per second, while 1080p with audio is listed at $0.272 per second. Actual charges depend on selected duration and account context.