Endpoint Model
Endpoint Voice
Endpoint TTS
Endpoint Online Voice Changer
Endpoint Websocket Progress
Endpoint Online Voice Changer
Step 3: Start Audio Conversion
POST
/
api
/
changeaudiofile
Copy
curl --request POST \
--url https://voiceai.fineshare.com/api/changeaudiofile \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"uuid": "task_id",
"voice": "spongebob",
"pitch": 0,
"speed": 1,
"from": "fv-file-changer",
"outputFormat": ".mp3",
"audioName": "sample_audio",
"platform": "web",
"pitch_control": "semi-tone",
"operation": "FVC",
"engine": "v5",
"auto_f0_adjust": true
}'
Copy
{
"status": "success",
"message": "Audio file transformed successfully.",
"data": {
"audioUrl": "http://example.com/transformed_audio.mp3",
"processingTime": 1500
}
}
Headers
Bearer token for authentication.
Body
application/json
Response
200
application/json
Audio file transformed successfully.
The response is of type object
.
Copy
curl --request POST \
--url https://voiceai.fineshare.com/api/changeaudiofile \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"uuid": "task_id",
"voice": "spongebob",
"pitch": 0,
"speed": 1,
"from": "fv-file-changer",
"outputFormat": ".mp3",
"audioName": "sample_audio",
"platform": "web",
"pitch_control": "semi-tone",
"operation": "FVC",
"engine": "v5",
"auto_f0_adjust": true
}'
Copy
{
"status": "success",
"message": "Audio file transformed successfully.",
"data": {
"audioUrl": "http://example.com/transformed_audio.mp3",
"processingTime": 1500
}
}
Assistant
Responses are generated using AI and may contain mistakes.