Voiceover Defaults
GET
/v1/audio/voiceover/defaults
This endpoint is for retrieving for the voiceover operation.
Request Example
Below is an example for retrieving the defaults for the voiceover operation.
curl -X GET 'https://api.stablecog.com/v1/audio/voiceover/defaults'
const API_HOST = 'https://api.stablecog.com';
const API_ENDPOINT = '/v1/audio/voiceover/defaults;
const API_URL = `${API_HOST}${ENDPOINT}`;
const res = await fetch(API_URL);
const resJSON = await res.json();
console.log(resJSON);
import requests
API_HOST = 'https://api.stablecog.com'
API_ENDPOINT = '/v1/audio/voiceover/defaults'
API_URL = f'{API_HOST}{API_ENDPOINT}'
response = requests.get(API_URL)
res_json = response.json()
print(json.dumps(res_json, indent=2))
Response
{
"model_id": "0f442a3e-cf53-490b-b4a9-b0dda63e9523",
"speaker_id": "0140c5dc-af12-4643-bfec-650d3cd03c56",
"temperature": 0.7,
"denoise_audio": true,
"remove_silence": true
}
Response Body
model_id
(enum) TVoiceoverModelID
The ID of the default voiceover model.
scheduler_id
(enum) TVoiceoverSpeakerID
The ID of the default speaker.
temperature
min0 max1 | float
The default temperature for the voiceover operation.
denoise_audio
boolean
The default value for denoise audio for the voiceover operation.
remove_silence
boolean
The default value for remove silence for the voiceover operation.