
🇨🇳 Chinese

🇨🇳 Chinese
- 系统内部接口
- OpenAI
- Anthropic
- Suno(音乐)
- 场景一:续写音乐并获取完整音乐
- 场景二:Cover 音乐:音乐翻版\修改风格
- 场景三:Replace Section:替换片段
- 场景四:Persona:歌手风格
- 场景五:stems:声曲分离(仅限chirp_auk)
- 场景六:Timing:歌词、音频时间线(仅限chirp_auk)
- 场景七:wav:获取 wav 格式文件
- 场景八:mp4:生成 mp4 mv 视频(仅限chirp_auk)
- 生成音乐POST
- 上传音乐POST
- 歌曲拼接POST
- 新建 PersonaPOST
- 声曲分离GET
- Timing:歌词、音频时间线GET
- 获取 wav 格式文件GET
- 生成 mp4 mv 视频GET
- 生成歌词POST
- 查询单个任务GET
- 批量查询任务POST
- 批量查询歌曲GET
- Udio(音乐)
- Midjourney API文档(生图)
- Flux(生图)
- Recraft(生图)
- Ideogram(生图)
- Luma(视频)
- Runway(视频)
- PIKA(视频)
- 可灵API(官方接口)
- Replicate 通用接口
- MiniMax海螺(视频)
生成音乐
POST
/udio/generate-proxy
Last modified:2024-11-04 16:19:41
用于指定在完整歌曲中生成片段的起始和结束位置。0% (0) 对应歌曲开头,50% (0.5) 对应歌曲中间,100% (1) 对应歌曲结尾。点击数值指示器可切换为自动模式,让模型自行决定最佳位置。这个功能在使用歌曲扩展特性时特别有用。
用于指定在完整歌曲中放置歌词的位置。8% 对应歌曲开头,50% 对应歌曲中间,90% 将在歌曲结尾处生成片段。这个功能在使用歌曲扩展特性时特别有用。
控制提示词对生成内容的影响程度。较高的值可以提高对提示词的遵循度,但可能会导致生成的声音不够自然。
控制歌词对生成内容的影响程度。较低的值可能会产生更自然的声音,但可能会忽略部分歌词内容。
控制模型在生成音频时对清晰度和乐器分离度的优先级。较高的值可能会产生更清晰的音频,但声音可能不够自然。
实验性功能。用于在生成质量和生成速度之间进行权衡。
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Authorization
string
optional
Example:
Bearer
Body Params application/json
gen_params
object
required
prompt
string
required
Example:
rock, pop soul, electronic
lyrics
string
required
Example:
[Verse 1]
In the silence, echoes fade, footsteps in the ground
Time's slipping, memories made, with whispers all around
As the stars dim, shadows play, we take our final bow
lyrics_type
enum<string>
required
Allowed values:
userinstrumentalgenerate
Example:
user
model_type
enum<string>
required
Allowed values:
udio32-v1.5udio130-v1.5
Example:
udio130-v1.5
config
object
required
negative_prompt
string
optional
Example:
song_section_start
number
required
>= 0<= 1
Default:
0
Example:
0
song_section_end
number
required
>= 0<= 1
Default:
1
Example:
1
lyrics_placement_start
number
required
>= 0<= 1
Example:
0
lyrics_placement_end
number
required
>= 0<= 1
Example:
0.95
prompt_strength
number
required
>= 0<= 1
Default:
0.5
Example:
0.5
clarity_strength
number
required
>= 0<= 1
Default:
0.25
Example:
0.25
lyrics_strength
number
required
>= 0<= 1
Default:
0.5
Example:
0.5
generation_quality
enum<number>
required
Allowed values:
0.250.50.751
Default:
0.75
Example:
0.75
seed
number
required
Default:
-1
Example:
-1
bypass_prompt_optimization
boolean
required
Default:
false
Example:
false
Example
{
"gen_params": {
"prompt": "The last song ever sung on the planet earth",
"lyrics": "",
"lyrics_type": "generate",
"bypass_prompt_optimization": false,
"seed": -1,
"song_section_start": 0.4,
"prompt_strength": 0.5,
"clarity_strength": 0.25,
"lyrics_strength": 0.5,
"generation_quality": 0.75,
"negative_prompt": "",
"model_type": "udio32-v1.5",
"config": {
"mode": "regular"
}
}
}
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 '/udio/generate-proxy' \
--header 'Authorization: Bearer' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"gen_params": {
"prompt": "The last song ever sung on the planet earth",
"lyrics": "",
"lyrics_type": "generate",
"bypass_prompt_optimization": false,
"seed": -1,
"song_section_start": 0.4,
"prompt_strength": 0.5,
"clarity_strength": 0.25,
"lyrics_strength": 0.5,
"generation_quality": 0.75,
"negative_prompt": "",
"model_type": "udio32-v1.5",
"config": {
"mode": "regular"
}
}
}'
Responses
🟢200成功
application/json
Body
code
string
required
message
string
required
data
string
required
Example
{
"code": "success",
"message": "",
"data": "736a6f88-bd29-4b1e-b110-37132a5325ac"
}