Documentation Index
Fetch the complete documentation index at: https://docs.xhuoapi.ai/llms.txt
Use this file to discover all available pages before exploring further.
SUNO 允許我們創建新版的Persona-v2-vox 版:歌手風格,與舊版本不同的需要先獲取vox_audio_id。本文檔講解創建新版Persona-v2-vox的對接方法。
首選需要該 API獲取vox_audio_id參數值,該API可以輸入多個個輸入參數,比如 audio_id、vocal_start、vocal_end,它是參考歌曲ID以及選定的時間範圍。
這裡我們輸入的 audio_id 是 42599b24-fb14-4cd3-a444-e15ffde3661b。
import requests
url = "https://api.xhuoapi.ai/v1/suno/vox"
headers = {
"accept": "application/json",
"authorization": "Bearer {token}",
"content-type": "application/json"
}
payload = {
"audio_id": "42599b24-fb14-4cd3-a444-e15ffde3661b",
"vocal_end": 30,
"vocal_start": 20
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)
結果如下:
{
"success": true,
"task_id": "9d5ce870-18e3-4c17-a1d9-7ef5a07918e9",
"trace_id": "c31b50cd-0dbe-4e53-a7a5-83965dc5ad6b",
"data": {
"id": "24f0827e-5847-4011-b9b7-fc0b62032b65",
"source_clip_id": "42599b24-fb14-4cd3-a444-e15ffde3661b",
"status": "complete",
"vocal_audio_url": "https://cdn1.suno.ai/processed_24f0827e-5847-4011-b9b7-fc0b62032b65_vocals.m4a",
"vocal_end_s": 30,
"vocal_start_s": 20,
"wave_response": {
"waveform_aggregates": [
{
"data": [
[
-4,
4,
-50,
73,
-2517,
2887,
294
],
[
-5,
4,
296
]
],
"mip_map_level": 11
},
{
"data": [
[
-19576,
20406,
-16717,
16980,
-18926,
20807,
-20029,
20103,
-16437,
20899
],
[
-19578,
20406,
-16720,
16980,
-18825,
20051,
-20029,
20103,
-16453,
20903
]
],
"mip_map_level": 20
}
]
}
}
}
可以看到,data 的 id 字段就是我們想要的vox_audio_id,然後我們去Persona API創建新版的Persona-v2-vox:歌手風格,具體輸入如下所示:
import requests
url = "https://api.xhuoapi.ai/v1/suno/persona"
headers = {
"accept": "application/json",
"authorization": "Bearer {token}",
"content-type": "application/json"
}
payload = {
"name": "test",
"audio_id": "42599b24-fb14-4cd3-a444-e15ffde3661b",
"vocal_end": 30,
"vocal_start": 20,
"vox_audio_id": "24f0827e-5847-4011-b9b7-fc0b62032b65"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)
調用後得到如下結果:
{
"success": true,
"task_id": "e04b06a1-ff61-48e2-9fcc-15284bd18481",
"data": {
"persona_id": "49bef16d-6a09-49d1-8c24-a81663698b98"
}
}
然後我們可以根據上面的persona_id值進行新版的Persona-v2-vox:歌手風格進行創作,具體的創作方法和Suno 歌曲生成 API 對接說明一致,最後我們就可以通過Suno Vox API來實現新版的Persona-v2-vox:歌手風格進行創作歌曲。