
🇨🇳 Chinese

🇨🇳 Chinese
- OpenAI
- Anthropic
- Suno(音乐)
- Udio(音乐)
- Midjourney API文档(生图)
- Flux(生图)
- Recraft(生图)
- Ideogram(生图)
- Luma(视频)
- Runway(视频)
- PIKA(视频)
- 可灵API(官方接口)
- Replicate 通用接口
- MiniMax海螺(视频)
video2video 视频转视频 风格重绘
POST
/runway/pro/video2video
Last modified:2024-11-06 15:19:28
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
string
optional
Header Params
string
optional
Authorization
string
optional
Default:
{{YOUR_API_KEY}}
Body Params application/json
video
string
required
model
string
required
prompt
string
提示词
options
object
required
structure_transformation
number
required
>= 0<= 1
flip
boolean
optional
Default:
false
callback_url
string
required
Example
{
"callback_url": "http://baidu.com",
"video": "http://runwaycdn.rixapi.com/attachments/video/runway/20241015/82bc23c83b5c32e75059c8328df5cffb.mp4",
"model": "gen3",
"prompt": "像素风格",
"options": {
"structure_transformation": 0.5,
"flip": true
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '/runway/pro/video2video' \
--header 'Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"callback_url": "http://baidu.com",
"video": "http://runwaycdn.rixapi.com/attachments/video/runway/20241015/82bc23c83b5c32e75059c8328df5cffb.mp4",
"model": "gen3",
"prompt": "像素风格",
"options": {
"structure_transformation":0.5,
"flip": true
}
}'
Responses
🟢200成功
application/json
Body
object {0}
Example
{}
Modified at 2024-11-06 15:19:28