Nova Reel生成视频需要一些时间 - 大约需要4分钟来制作一个6秒钟的视频。为了适应这个执行时间, Bedrock Runtime
引入了一个新的异步调用API。调用start_async_invoke()
创建一个新的调用作业。当作业完成时, Bedrock会自动将生成的视频保存到指定的S3存储桶。
修改代码的s3_destination_bucket
变量:
from random import randint
import json
import boto3
client = boto3.client(service_name='bedrock-runtime', region_name="us-east-1")
s3_destination_bucket = "xxx-videos" # Change this to a unique bucket name.
inference_params = {
"taskType": "TEXT_VIDEO",
"textToVideoParams": {
"text": "Closeup of a large seashell in the sand, gentle waves flow around the shell. Camera zoom in."
},
"videoGenerationConfig": {
"durationSeconds": 6,
"fps": 24,
"dimension": "1280x720",
"seed": randint(0, 2147483646),
},
}
response = client.start_async_invoke(
modelInput=inference_params,
modelId="amazon.nova-reel-v1:0",
outputDataConfig={"s3OutputDataConfig": {"s3Uri": f"s3://{s3_destination_bucket}"}},
)
print(response)
{
"taskType": "TEXT_VIDEO",
"textToVideoParams": {
"text": 字符串,
},
"videoGenerationConfig": {
"durationSeconds": 整数,
"fps": 整数,
"dimension": 字符串,
"seed": 整数
}
}
在视频生成过程中, 可以通过两种方式检查其状态。
aws bedrock-runtime get-async-invoke --invocation-arn arn:aws:bedrock:us-east-1:145197526627:async-invoke/kl7di9qphowb --region us-east-1 | jq
aws bedrock-runtime list-async-invokes --region us-east-1 | jq
{
"asyncInvokeSummaries": [
{
"invocationArn": "arn:aws:bedrock:us-east-1:145197526627:async-invoke/kl7di9qphowb",
"modelArn": "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-reel-v1:0",
"clientRequestToken": "e2160f4c-b8b7-4469-b08d-8c553e87740c",
"status": "Completed",
"submitTime": "2024-12-15T06:05:11+00:00",
"lastModifiedTime": "2024-12-15T06:09:22+00:00",
"endTime": "2024-12-15T06:09:21+00:00",
"outputDataConfig": {
"s3OutputDataConfig": {
"s3Uri": "s3://broadcast-videos/kl7di9qphowb"
}
}
}
]
}
Python版本代码:
# Create the Bedrock Runtime client.
bedrock_runtime = boto3.client("bedrock-runtime")
invocation = bedrock_runtime.list_async_invokes(
maxResults=10, # (Optional)
statusEquals="InProgress", # (Optional) Can be "Completed", "InProgress", or "Failed". Omit this argument to list all jobs, regardless of status.
# Note: There are other supported arguments not demonstrated here.
)
# Pretty print the JSON response
logger.info("Invocation Jobs:")
logger.info(json.dumps(invocation, indent=2, default=str))
此方法支持许多参数, 允许按状态、日期和maxResults
限制进行过滤, 它还支持分页
完成后,到s3上查看生成的视频: