Video Model pixverse
- 2026.04.13 Now supports
pixverse-c1version — price is2/3of the base price - 2026.03.31 Now supports
v6version — price is2/3of the base price - 2026.01.28 Now supports
v5.6version — price is5/6of the base price - 2025.12.02 Now supports
v5.5version — price is5/6of the base price - 2025.07.15 Now supports
v5.0version — price is2/3of the base price - 2025.05.15 Now supports
v4.5version — price is2/3of the base price - 2025.04.24 Now supports
v4version - 2025.01.06 This site now supports the video model
pixverse - Supports
text-to-videoandimage-to-video - Billing is per generation, one video per request — depends on version, duration, mode, and resolution
- How to use: visit https://pixverse.ddaiai.com and see the
Online Testsection below
Online Test
1. Visit https://pixverse.ddaiai.com (if blocked, try changing the subdomain prefix to suibian)
2. If you find it blocked, you can change the address yourself: https://suibian.ddaiai.com — replace suibian with something else, e.g. https://2025.ddaiai.com, all work
Online Test
- Open https://pixverse.ddaiai.com
- Configure the fields as shown below
- OpenAi API Base URL: https://api.openai-hk.com
- OpenAi KEY: hk-your-apiKey

- Result

Billing
- Base: v3.5, 360p, 5s duration, normal mode
- Supports v3.5, v4, v4.5; deprecated versions v2.5 and v3 are not supported
- Duration 8s is 2x
- Resolution: 540P is 1.5x, 720P is 2x, 1080P is 4x
- Mode
performanceis 2x
- Mode
- Multipliers are cumulative — e.g. 720P + 8s = 2×2 = 4x; add performance and it becomes 8x
v4.5andv5versions are priced at2/3of the base price (0.667)
v5.5version is priced at5/6of the base price (0.833)
Pixverse API
- Generate task
- Query task status
1. Generate Task
shell
curl --request POST \
--url https://api.openai-hk.com/pixverse/generate \
--header 'Authorization: Bearer hk-your-key' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "火气",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228
}'curl --request POST \
--url https://api.openai-hk.com/pixverse/generate \
--header 'Authorization: Bearer hk-your-key' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "火气",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228
}'Request body
json
{
"prompt": "火气",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228
//"img_url":"https://www.openai-hk.com/res/img/open.png"
//"frame":["https://media.pixverse.ai/upload%2F880f121b-4036-4ff5-a153-58aff9417d05.jpg","https://media.pixverse.ai/upload%2Fd1c8f8b5-6f6f-42bc-a954-11a7582e63d0.jpg"],
//"extend": 1,
//"original_video_id": 314958906984512,
//"style":"cyberpunk",
//"template_id": 313359209531840,
//"asset_id": 315445121042560,
//"camera_movement": "vertical_down",
// "fusion": [ "https://media.pixverse.ai/asset/media/fusion4_1.jpg", "https://media.pixverse.ai/asset/media/fusion4_2.png"],
//"images": [ "https://media.pixverse.ai/asset/media/fusion4_1.jpg", "https://media.pixverse.ai/asset/media/fusion4_2.png"],
//audio:1,
}{
"prompt": "火气",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228
//"img_url":"https://www.openai-hk.com/res/img/open.png"
//"frame":["https://media.pixverse.ai/upload%2F880f121b-4036-4ff5-a153-58aff9417d05.jpg","https://media.pixverse.ai/upload%2Fd1c8f8b5-6f6f-42bc-a954-11a7582e63d0.jpg"],
//"extend": 1,
//"original_video_id": 314958906984512,
//"style":"cyberpunk",
//"template_id": 313359209531840,
//"asset_id": 315445121042560,
//"camera_movement": "vertical_down",
// "fusion": [ "https://media.pixverse.ai/asset/media/fusion4_1.jpg", "https://media.pixverse.ai/asset/media/fusion4_2.png"],
//"images": [ "https://media.pixverse.ai/asset/media/fusion4_1.jpg", "https://media.pixverse.ai/asset/media/fusion4_2.png"],
//audio:1,
}Key field descriptions
| Field | Type | Description |
|---|---|---|
| prompt | string | Prompt for video generation |
| model | string | Supported models: v5.5 v5.0 v4.5 v4 v3.5 |
| quality | string | Supported resolutions: 360p 540p 720p 1080p |
| duration | number | Video duration: 5 8; v5.5 and later also support 10 |
| aspect_ratio | string | Video aspect ratio |
| motion_mode | string | Motion mode: normal performance |
| seed | number | Random seed |
| img_url | string | Image URL; supports URL and base64 |
| frame | string[] | Frame image URLs; supports URL and base64; must be exactly 2 images |
| extend | number | Extend duration: 0 no extension 1 extend |
| original_video_id | number | Original video ID |
| style | string | Style options: cyberpunk anime comic clay 3d_animation |
| template_id | number | Template ID — Template reference |
| asset_id | number | Custom character ID |
| camera_movement | string | Camera movement |
| fusion | string[] | Multi-subject: subject image URLs; supports URL and base64 (max 2 images) |
| images | string[] | Multi-image template effects — typically used together with template_id |
| audio | number | Only supported for model >= v5.5; whether to add voiceover |
| multi_shot | number | Default 0; set to 1 to generate multi-shot video — only supported for model = v5.5; 1.5x base price |
Response body — returns video_id
json
{
"ErrCode": 0,
"ErrMsg": "success",
"Resp": {
"video_id": 314985220084864
}
}{
"ErrCode": 0,
"ErrMsg": "success",
"Resp": {
"video_id": 314985220084864
}
}2. Query Task
Response body
json
{
"ErrCode": 0,
"ErrMsg": "success",
"Resp": {
"video_id": 315326452915648,
"video_status": 1,
"account_id": 314797200646848,
"created_at": "2025-01-05T15:19:09Z",
"first_frame": "https://media.pixverse.ai/pixverse%2Fjpg%2Fmedia%2Fa056c76c-48ab-4cca-a4fd-90e01e2b37ad.jpg",
"output_width": 640,
"output_height": 352,
"original_video_id": 0,
"upscaled": 0,
"prompt": "火气",
"model": "v3.5",
"negative_prompt": "",
"quality": "360p",
"motion_mode": "normal",
"asset_id": 0,
"auto_character_prompt": 0,
"seed": 648043228,
"likes": 0,
"model_name": "",
"queue_data": {
"queue_time": 1,
"queue_count": 0
},
"video_duration": 5,
"last_frame": "",
"extended": 0,
"lip_sync": {},
"url": "https://media.pixverse.ai/pixverse%2Fmp4%2Fmedia%2Fweb%2Ff890a133-4dde-4876-aa9f-0b236505db98_seed648043228.mp4",
"img_id": 0,
"img_url": "",
"img_path": "",
"duration": 5,
"motion_brush": "",
"asset_name": "",
"asset_img_url": "",
"remove_watermark": 0,
"nick_name": "nickAZJa",
"avatar": "https://lh3.googleusercontent.com/a/ACg8ocKRwvgEzTByyj0mloUyXJMouTPAPGZwui_EyOAlxmgYAaiufw=s96-c",
"aspect_ratio": "16:9",
"camera_movement": "",
"relation_type": 0,
"style": "",
"template_id": 0,
"template_name": "",
"template_thumbnail_url": "",
"template_thumbnail_video_url": "",
"template_i18n_json": "",
"workflow_tag": "",
"customer_paths": null,
"platform": "web"
}
}{
"ErrCode": 0,
"ErrMsg": "success",
"Resp": {
"video_id": 315326452915648,
"video_status": 1,
"account_id": 314797200646848,
"created_at": "2025-01-05T15:19:09Z",
"first_frame": "https://media.pixverse.ai/pixverse%2Fjpg%2Fmedia%2Fa056c76c-48ab-4cca-a4fd-90e01e2b37ad.jpg",
"output_width": 640,
"output_height": 352,
"original_video_id": 0,
"upscaled": 0,
"prompt": "火气",
"model": "v3.5",
"negative_prompt": "",
"quality": "360p",
"motion_mode": "normal",
"asset_id": 0,
"auto_character_prompt": 0,
"seed": 648043228,
"likes": 0,
"model_name": "",
"queue_data": {
"queue_time": 1,
"queue_count": 0
},
"video_duration": 5,
"last_frame": "",
"extended": 0,
"lip_sync": {},
"url": "https://media.pixverse.ai/pixverse%2Fmp4%2Fmedia%2Fweb%2Ff890a133-4dde-4876-aa9f-0b236505db98_seed648043228.mp4",
"img_id": 0,
"img_url": "",
"img_path": "",
"duration": 5,
"motion_brush": "",
"asset_name": "",
"asset_img_url": "",
"remove_watermark": 0,
"nick_name": "nickAZJa",
"avatar": "https://lh3.googleusercontent.com/a/ACg8ocKRwvgEzTByyj0mloUyXJMouTPAPGZwui_EyOAlxmgYAaiufw=s96-c",
"aspect_ratio": "16:9",
"camera_movement": "",
"relation_type": 0,
"style": "",
"template_id": 0,
"template_name": "",
"template_thumbnail_url": "",
"template_thumbnail_video_url": "",
"template_i18n_json": "",
"workflow_tag": "",
"customer_paths": null,
"platform": "web"
}
}Key field descriptions
| Field | Type | Description |
|---|---|---|
| video_id | number | Video ID — used for queries and extensions |
| url | string | Video URL |
| first_frame | string | Cover image |
| video_status | number | Status: 1 completed successfully, 5 submitted, 10 generating, 7 content review failed, 8 generation failed |
3. Create Character
- Billing: 100 credits
shell
curl --request POST \
--url https://api.openai-hk.com/pixverse/character \
--header 'Authorization: Bearer hk-your-key' \
--header 'Content-Type: application/json' \
--data ' {
"images": ["https://media.pixverse.ai/upload/880f121b-4036-4ff5-a153-58aff9417d05.jpg"]
}'curl --request POST \
--url https://api.openai-hk.com/pixverse/character \
--header 'Authorization: Bearer hk-your-key' \
--header 'Content-Type: application/json' \
--data ' {
"images": ["https://media.pixverse.ai/upload/880f121b-4036-4ff5-a153-58aff9417d05.jpg"]
}'Request body
json
{
"images": [
"https://media.pixverse.ai/upload/880f121b-4036-4ff5-a153-58aff9417d05.jpg"
]
}{
"images": [
"https://media.pixverse.ai/upload/880f121b-4036-4ff5-a153-58aff9417d05.jpg"
]
}Response body — returns AssetId
json
{
"Resp": {
"AssetId": 315472036507328
},
"ErrCode": 0,
"ErrMsg": "Success"
}{
"Resp": {
"AssetId": 315472036507328
},
"ErrCode": 0,
"ErrMsg": "Success"
}Use Cases
Case 1: Text-to-Video
json
{
"prompt": "牛鬼蛇神",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228
}{
"prompt": "牛鬼蛇神",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228
}Case 2: Image-to-Video
json
{
"prompt": "颤抖",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228,
"img_url": "https://www.openai-hk.com/res/img/open.png"
}{
"prompt": "颤抖",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228,
"img_url": "https://www.openai-hk.com/res/img/open.png"
}Case 3: Transition — First and Last Frame
json
{
"prompt": "渐变",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"frame": [
"https://media.pixverse.ai/upload%2F880f121b-4036-4ff5-a153-58aff9417d05.jpg",
"https://media.pixverse.ai/upload%2Fd1c8f8b5-6f6f-42bc-a954-11a7582e63d0.jpg"
],
"seed": 739052608
}{
"prompt": "渐变",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"frame": [
"https://media.pixverse.ai/upload%2F880f121b-4036-4ff5-a153-58aff9417d05.jpg",
"https://media.pixverse.ai/upload%2Fd1c8f8b5-6f6f-42bc-a954-11a7582e63d0.jpg"
],
"seed": 739052608
}Case 4: Extend
json
{
"prompt": "牛奶",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"motion_mode": "normal",
"seed": 622979623,
"platform": "web",
"extend": 1,
"original_video_id": 314958906984512
}{
"prompt": "牛奶",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"motion_mode": "normal",
"seed": 622979623,
"platform": "web",
"extend": 1,
"original_video_id": 314958906984512
}Case 5: Effect Templates
- Template ID reference: Template reference
json
{
"prompt": "放马西行,直面天命!",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228,
"img_url": "https://www.openai-hk.com/res/img/open.png",
"template_id": 313359209531840
}{
"prompt": "放马西行,直面天命!",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228,
"img_url": "https://www.openai-hk.com/res/img/open.png",
"template_id": 313359209531840
}- Multi-image effects
json
{
"prompt": "Different style matches different mood",
"model": "v4.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228,
"template_id": 340952173729600,
"images": [
"https://media.pixverse.ai/upload%2F654a3d5e-ff8a-4fa5-8030-5aa13c7ce0a0.jpg",
"https://media.pixverse.ai/upload%2F700d0b85-38ec-4d46-a816-9c9222742eb9.jpg"
]
}{
"prompt": "Different style matches different mood",
"model": "v4.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228,
"template_id": 340952173729600,
"images": [
"https://media.pixverse.ai/upload%2F654a3d5e-ff8a-4fa5-8030-5aa13c7ce0a0.jpg",
"https://media.pixverse.ai/upload%2F700d0b85-38ec-4d46-a816-9c9222742eb9.jpg"
]
}Case 6: Style
json
{
"prompt": "放马西行,直面天命!",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"style": "cyberpunk",
"seed": 648043228
}{
"prompt": "放马西行,直面天命!",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"style": "cyberpunk",
"seed": 648043228
}Case 7: Character
A. Generate Character ID (AssetId)
Request body
json
{
"images": [
"https://media.pixverse.ai/upload/880f121b-4036-4ff5-a153-58aff9417d05.jpg"
]
}{
"images": [
"https://media.pixverse.ai/upload/880f121b-4036-4ff5-a153-58aff9417d05.jpg"
]
}Response body — returns AssetId
json
{
"Resp": {
"AssetId": 315472036507328
},
"ErrCode": 0,
"ErrMsg": "Success"
}{
"Resp": {
"AssetId": 315472036507328
},
"ErrCode": 0,
"ErrMsg": "Success"
}B. Use AssetId for Creation
- AssetId can be reused
- AssetId cannot be used across accounts; it may become unusable if the account is logged out or banned
json
{
"prompt": "微笑",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228,
"asset_id": 315472036507328
}{
"prompt": "微笑",
"model": "v3.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"seed": 648043228,
"asset_id": 315472036507328
}Case 8: Camera Movement
json
{
"prompt": "风雨",
"model": "v4.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "1:1",
"motion_mode": "normal",
"seed": 1315203603,
"camera_movement": "vertical_down"
}{
"prompt": "风雨",
"model": "v4.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "1:1",
"motion_mode": "normal",
"seed": 1315203603,
"camera_movement": "vertical_down"
}camera_movement parameter options
json
{
"name": {
"horizontal_left": "水平向左",
"horizontal_right": "水平向右",
"vertical_up": "垂直向上",
"vertical_down": "垂直向下",
"crane_up": "上升镜头",
"hitchcock": "希区柯克变焦",
"zoom_in": "放大",
"zoom_out": "缩小",
"quickly_zoom_in": "快速推进",
"quickly_zoom_out": "快速拉远",
"smooth_zoom_in": "平滑推进",
"super_dolly_out": "超级拉远",
"left_follow": "左侧跟拍",
"right_follow": "右侧跟拍",
"pan_left": "左侧环弧",
"pan_right": "右侧环弧",
"fix_bg": "固定镜头",
"camera_rotation": "镜头旋转",
"robo_arm": "机械臂运动",
"whip_pan": "快速摇镜"
},
"image": {
"horizontal_left": "https://media.pixverse.ai/asset/template/web_horizontalleft_250429.gif",
"horizontal_right": "https://media.pixverse.ai/asset/template/web_horizontalright_250429.gif",
"vertical_up": "https://media.pixverse.ai/asset/template/web_verticalup_250429.gif",
"vertical_down": "https://media.pixverse.ai/asset/template/web_verticaldown _250429.gif",
"crane_up": "https://media.pixverse.ai/asset/template/web_craneup_250428.gif",
"hitchcock": "https://media.pixverse.ai/asset/template/Dolly Zoom.gif",
"zoom_in": "https://media.pixverse.ai/asset/template/web_zoomin_250429.gif",
"zoom_out": "https://media.pixverse.ai/asset/template/web_zoomout_250429.gif",
"quickly_zoom_in": "https://media.pixverse.ai/asset/template/web_quicklyzoomin_250428.gif",
"quickly_zoom_out": "https://media.pixverse.ai/asset/template/web_quicklyzoomout_250428.gif",
"smooth_zoom_in": "https://media.pixverse.ai/asset/template/web_smoothzoomin_250428.gif",
"super_dolly_out": "https://media.pixverse.ai/asset/template/web_superdollyout_250428.gif",
"left_follow": "https://media.pixverse.ai/asset/template/Left Tracking Shot.gif",
"right_follow": "https://media.pixverse.ai/asset/template/Right Tracking Shot.gif",
"pan_left": "https://media.pixverse.ai/asset/template/Left Arc Shot.gif",
"pan_right": "https://media.pixverse.ai/asset/template/Right Arc Shot.gif",
"fix_bg": "https://media.pixverse.ai/asset/template/Fixed Shot.gif",
"camera_rotation": "https://media.pixverse.ai/asset/template/web_camerarotation_250428.gif",
"robo_arm": "https://media.pixverse.ai/asset/template/web_roboarm_250428.gif",
"whip_pan": "https://media.pixverse.ai/asset/template/web_whippan_250428.gif"
}
}{
"name": {
"horizontal_left": "水平向左",
"horizontal_right": "水平向右",
"vertical_up": "垂直向上",
"vertical_down": "垂直向下",
"crane_up": "上升镜头",
"hitchcock": "希区柯克变焦",
"zoom_in": "放大",
"zoom_out": "缩小",
"quickly_zoom_in": "快速推进",
"quickly_zoom_out": "快速拉远",
"smooth_zoom_in": "平滑推进",
"super_dolly_out": "超级拉远",
"left_follow": "左侧跟拍",
"right_follow": "右侧跟拍",
"pan_left": "左侧环弧",
"pan_right": "右侧环弧",
"fix_bg": "固定镜头",
"camera_rotation": "镜头旋转",
"robo_arm": "机械臂运动",
"whip_pan": "快速摇镜"
},
"image": {
"horizontal_left": "https://media.pixverse.ai/asset/template/web_horizontalleft_250429.gif",
"horizontal_right": "https://media.pixverse.ai/asset/template/web_horizontalright_250429.gif",
"vertical_up": "https://media.pixverse.ai/asset/template/web_verticalup_250429.gif",
"vertical_down": "https://media.pixverse.ai/asset/template/web_verticaldown _250429.gif",
"crane_up": "https://media.pixverse.ai/asset/template/web_craneup_250428.gif",
"hitchcock": "https://media.pixverse.ai/asset/template/Dolly Zoom.gif",
"zoom_in": "https://media.pixverse.ai/asset/template/web_zoomin_250429.gif",
"zoom_out": "https://media.pixverse.ai/asset/template/web_zoomout_250429.gif",
"quickly_zoom_in": "https://media.pixverse.ai/asset/template/web_quicklyzoomin_250428.gif",
"quickly_zoom_out": "https://media.pixverse.ai/asset/template/web_quicklyzoomout_250428.gif",
"smooth_zoom_in": "https://media.pixverse.ai/asset/template/web_smoothzoomin_250428.gif",
"super_dolly_out": "https://media.pixverse.ai/asset/template/web_superdollyout_250428.gif",
"left_follow": "https://media.pixverse.ai/asset/template/Left Tracking Shot.gif",
"right_follow": "https://media.pixverse.ai/asset/template/Right Tracking Shot.gif",
"pan_left": "https://media.pixverse.ai/asset/template/Left Arc Shot.gif",
"pan_right": "https://media.pixverse.ai/asset/template/Right Arc Shot.gif",
"fix_bg": "https://media.pixverse.ai/asset/template/Fixed Shot.gif",
"camera_rotation": "https://media.pixverse.ai/asset/template/web_camerarotation_250428.gif",
"robo_arm": "https://media.pixverse.ai/asset/template/web_roboarm_250428.gif",
"whip_pan": "https://media.pixverse.ai/asset/template/web_whippan_250428.gif"
}
}Case 9: Fusion — Multi-Subject
- The
fusionparameter accepts a maximum of 2 images promptmust include@1(first image) or@2(second image)
json
{
"prompt": " @1 is on the living room carpet, waving and slashing with @2 .",
"model": "v4.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"fusion": [
"https://media.pixverse.ai/asset/media/fusion4_1.jpg",
"https://media.pixverse.ai/asset/media/fusion4_2.png"
],
"seed": 648043228
}{
"prompt": " @1 is on the living room carpet, waving and slashing with @2 .",
"model": "v4.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"fusion": [
"https://media.pixverse.ai/asset/media/fusion4_1.jpg",
"https://media.pixverse.ai/asset/media/fusion4_2.png"
],
"seed": 648043228
}- Sample output video: https://media.pixverse.ai/pixverse%2Fmp4%2Fmedia%2Fweb%2Fori%2F7f5a1b0e-7666-4e1d-9008-2aec8f80011d_seed648043228.mp4
Case 10: Sound Effects
- Adds 2 new parameters:
sound_effect_contentandsound_effect_switch - Billing: adds
1/3of the base price - For example, if the original price is 2/3 of the base, adding sound effects makes it 1/3 + 2/3 =
1xthe base price - Effect: ambient background sound
json
{
"prompt": "火气",
"model": "v4.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"sound_effect_content": "火焰的爆破",
"sound_effect_switch": 1,
"seed": 648043228
}{
"prompt": "火气",
"model": "v4.5",
"quality": "360p",
"duration": 5,
"aspect_ratio": "16:9",
"motion_mode": "normal",
"sound_effect_content": "火焰的爆破",
"sound_effect_switch": 1,
"seed": 648043228
}- Sample output video: https://media.pixverse.ai/pixverse%2Fmp4%2Fmedia%2Fweb%2Fori%2F1bcc767c-3445-47ac-8542-54e14f19aef5_seed648043228.mp4
Case 11: Lip Sync with TTS
- Adds 3 new parameters:
lip_sync_tts_content,lip_sync_tts_speaker_id, andlip_sync_switch lip_sync_tts_speaker_idis the voice template ID — view templates here- Billing: adds
35/30of the base price
json
{
"prompt": "一个男大学生在云中漫步 卡通风格 ",
"lip_sync_tts_content": "Hello everybody, It is so crazy",
"lip_sync_tts_speaker_id": "6",
"lip_sync_switch": 1,
"duration": 5,
"quality": "720p",
"aspect_ratio": "16:9",
"motion_mode": "normal",
"model": "v4.5",
"create_count": 1,
"seed": 1905122892
}{
"prompt": "一个男大学生在云中漫步 卡通风格 ",
"lip_sync_tts_content": "Hello everybody, It is so crazy",
"lip_sync_tts_speaker_id": "6",
"lip_sync_switch": 1,
"duration": 5,
"quality": "720p",
"aspect_ratio": "16:9",
"motion_mode": "normal",
"model": "v4.5",
"create_count": 1,
"seed": 1905122892
}- Sample output video: https://media.pixverse.ai/pixverse%2Fmp4%2Fmedia%2Fweb%2Fori%2Ffe559373-069f-4951-a7dd-c7045803a339_seed1905122892.mp4
Case 12: v5.5 Built-in Voiceover
modelsupportsv5.6andv5.5
json
{
"prompt": "在北京繁忙的人行道上进行的一个随意街头采访。采访者手持一个普通、没有品牌标志的麦克风并问道:你知道OpenAI的Sora 2新模型吗?这是一个好用的视频模型。受访者回答说:是的,我有所了解,它已经可以在openai-hk平台上使用,太好用了。",
"model": "v5.5",
"duration": 5,
"quality": "360p",
"aspect_ratio": "16:9",
"audio": 1
}{
"prompt": "在北京繁忙的人行道上进行的一个随意街头采访。采访者手持一个普通、没有品牌标志的麦克风并问道:你知道OpenAI的Sora 2新模型吗?这是一个好用的视频模型。受访者回答说:是的,我有所了解,它已经可以在openai-hk平台上使用,太好用了。",
"model": "v5.5",
"duration": 5,
"quality": "360p",
"aspect_ratio": "16:9",
"audio": 1
}
OpenAi-HK