视频生成模型从文本和可选图像中产生最多2分钟的多镜头视频,其质量和一致性都有提高。
也称为 Amazon Nova Reel, Amazon-Nova-Reel-1.1, amazon-nova-reel-1-1
amazon-nova-reel-1-1/v1/videos/generationsamazon-nova-reelamazon.nova-reel-v1:1amazon/nova-reel来自 EmpirioLabs 目录的实时按量计费价格。只为实际用量付费,没有月度最低消费。
Amazon Nova Reel 1.1 通过 POST /v1/videos/generations 运行。请求会立即返回 job_id;轮询 GET /v1/jobs/{job_id} 直到任务完成,再从结果中读取输出 URL。 在EmpirioLabs 控制台获取 API 密钥。
curl https://api.empiriolabs.ai/v1/videos/generations \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon-nova-reel-1-1",
"prompt": "Describe what you want Amazon Nova Reel 1.1 to generate."
}'curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY"import requests
response = requests.post(
"https://api.empiriolabs.ai/v1/videos/generations",
headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
json={
"model": "amazon-nova-reel-1-1",
"prompt": "Describe what you want Amazon Nova Reel 1.1 to generate.",
},
)
job = response.json()
# Generation runs as an async job. Poll until it completes.
import time
while True:
status = requests.get(
f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
).json()
if status.get("status") in ("completed", "failed"):
print(status)
break
time.sleep(5)EmpirioLabs 上 Amazon Nova Reel 1.1 API 支持的请求参数。省略字段时使用默认值。
| 参数 | 类型 | 默认值 | 范围 / 值 | 描述 |
|---|---|---|---|---|
| prompt | string | - | - | 生成输出的文本描述。 |
| duration | number | 6 | 6 到 120 | 生成片段的长度以秒计。 |
| seed | number | - | - | 随机种子以保证可重复性。相同的种子 + 提示词 = 相同的输出。 |
| manual_mode | boolean | false | - | 多重射击模式:提供image_shots |
| image_shots | string | - | - | {prompt, image} 的 JSON 数组 for manual_mode |
多镜头输出 - 总计2分钟,以6秒增量 - 手动模式:每6秒提供1个即时,可选起始图像(1280x720 PNG/JPEG) 保留 - 生成的视频在48小时后删除. 上载的媒体预处理 - 上传的启动器图像在生成前被调整为1280x720. - 延长6秒。
在 EmpirioLabs,Amazon Nova Reel 1.1 按量计费:秒数 $0.14 每秒钟。本页的实时价格表始终与 API 的实际计费一致。
Amazon Nova Reel 1.1 通过 api.empiriolabs.ai 上的 POST /v1/videos/generations 提供,使用标准的 Bearer 令牌认证。
可以。EmpirioLabs Playground在浏览器中以与 API 相同的参数运行 Amazon Nova Reel 1.1,你可以在写代码之前先测试提示词。
创建 EmpirioLabs 账户,然后在控制台的 API Keys生成密钥。计费使用按量付费的额度,只为实际发出的请求付费。