Appearance
🎬 视频模型 Google Veo
- 2025.06.14 本站已经支持 视频模型
google-veo3
- 支持
文生视频
- 计费是按次数,一次一个视频
- 结果是 mp4 格式,可以直接播放 样品请看这里
价格及计费
- 基础价格 15000 积分/s
- 带配音的价格是基础价格的 1.5 倍
- 比如 8s 带配音的视频,价格是 15000*8*1.5 = 180000 积分(18 人民币)
Google Veo API
- 1.生成任务
- 2.查询任务状态
- 3.约定头文件 都得带
Authorization
Content-Type
shell
'Authorization: Bearer hk-your-key'
'Content-Type: application/json'
'Authorization: Bearer hk-your-key'
'Content-Type: application/json'
1.生成任务
shell
curl --request POST \
--url https://api.openai-hk.com/vmodel/generate \
--header 'Authorization: Bearer hk-your-key' \
--header 'Content-Type: application/json' \
--data '{
"model": "google-veo3",
"input": {
"prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic.",
"aspect_ratio": "16:9",
"duration": "8s",
"enhance_prompt": true,
"generate_audio": true
}
}'
curl --request POST \
--url https://api.openai-hk.com/vmodel/generate \
--header 'Authorization: Bearer hk-your-key' \
--header 'Content-Type: application/json' \
--data '{
"model": "google-veo3",
"input": {
"prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic.",
"aspect_ratio": "16:9",
"duration": "8s",
"enhance_prompt": true,
"generate_audio": true
}
}'
- 请求体
json
{
"model": "google-veo3",
"input": {
"prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic.",
"aspect_ratio": "16:9",
"duration": "8s",
"enhance_prompt": true,
"generate_audio": true
}
}
{
"model": "google-veo3",
"input": {
"prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic.",
"aspect_ratio": "16:9",
"duration": "8s",
"enhance_prompt": true,
"generate_audio": true
}
}
请求体关键字说明
字段 类型 说明 model string 可选 图生视频 google-veo3
input object 该模型下的参数 input.prompt string 提示语 input.aspect_ratio string 比例 16:9
9:16
1:1
input.duration string 时长 5s
8s
input.generate_audio boolean 是否配音 true
配音 价格是基础价格的 1.5 倍返回体 得到 id
json
{
"id": "9090e22a-f21d-44b0-b20c-0d27b8b7fc7a"
}
{
"id": "9090e22a-f21d-44b0-b20c-0d27b8b7fc7a"
}
2.查询任务状态
shell
curl --request GET \
--url https://api.openai-hk.com/vmodel/feed/9090e22a-f21d-44b0-b20c-0d27b8b7fc7a \
--header 'Authorization: Bearer hk-your-key' \
--header 'Content-Type: application/json'
curl --request GET \
--url https://api.openai-hk.com/vmodel/feed/9090e22a-f21d-44b0-b20c-0d27b8b7fc7a \
--header 'Authorization: Bearer hk-your-key' \
--header 'Content-Type: application/json'
返回体
json
{
"id": "9090e22a-f21d-44b0-b20c-0d27b8b7fc7a",
"model": "google-veo3",
"input": {
"aspect_ratio": "16:9",
"duration": "8s",
"enhance_prompt": true,
"generate_audio": true,
"prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic."
},
"output": "https://cos.aitutu.cc/files/rabbit/98BXaAyaltfdJaiIRwQ2w_output.mp4",
"status": "succeeded",
"error": null
}
{
"id": "9090e22a-f21d-44b0-b20c-0d27b8b7fc7a",
"model": "google-veo3",
"input": {
"aspect_ratio": "16:9",
"duration": "8s",
"enhance_prompt": true,
"generate_audio": true,
"prompt": "A casual street interview on a busy New York City sidewalk in the afternoon. The interviewer holds a plain, unbranded microphone and asks: Have you seen google Veo3 model on openai-hk. Person replies: Yeah I saw it, it's already available on openai-hk. It's so Magic."
},
"output": "https://cos.aitutu.cc/files/rabbit/98BXaAyaltfdJaiIRwQ2w_output.mp4",
"status": "succeeded",
"error": null
}
关键字说明
字段 | 类型 | 说明 |
---|---|---|
id | string | |
model | string | 输入命令 |
input | object | 该模型下的参数 |
output | string | 结果 url 地址 |
status | string | 状态 starting processing succeeded failed |
error | string | 错误信息 |