Start Enhancing
Initiates the audio enhancement process, including options for dereverberation, general enhancement, dewind, and dechimes. It also allows for transcription and sentiment analysis of the audio file spe
Headers
Content-Type
application/json
X-API-KEY
<Your API Key Here>
Request
POST
/api/v1/audiaize/unifiy/Request Body
The request body should be a JSON object with the following structure:
{
"file_url": "string",
"dereverb": boolean,
"enhancement": boolean,
"dewind": boolean,
"dechimes": "boolean,
"perform_transcription": boolean,
"transcriptionLanguage":"string",
"perform_sentimental_analysis": boolean,
"perform_actionable": boolean,
"perform_summary": boolean
}{
"file_url": "string",
"perform_transcription": boolean,
"perform_sentimental_analysis": boolean,
"transcriptionLanguage":"string",
"perform_actionable": boolean,
"perform_summary": boolean
}file_url*
string
URL of the audio file to be processed.
dereverb
boolean
Apply dereverberation if true.
dechimes
boolean
Remove chime noise if true.
dewind
boolean
Remove wind noise if true.
enhancement
boolean
Apply general audio quality enhancement if true.
perform_transcription
boolean
Transcribe audio to text if true.
perform_sentimental_analysis
boolean
Perform sentiment analysis on the transcribed text if true.
perform_actionable
boolean
Generate Actionable insights based on Transcription
transcriptionLanguage
string
Transcription Language of the audio by default en Options: - en - hi - hi-Latn
perform_summary
boolean
Generate Smmary based on Transcription
Response
{
"id": {id},
"file_url": "string",
"perform_transcription": boolean,
"perform_sentimental_analysis": boolean,
"perform_actionable": boolean,
"status": "started"
"transcriptionLanguage": "string",
"dereverb": boolean,
"dewind": boolean,
"dechimes": boolean,
"enhancement": boolean"
}202 Accepted: The request has been accepted for processing, but the processing has not been completed.400 Bad Request: The server could not understand the request due to invalid syntax.401 Unauthorized: Authentication is required and has failed or has not yet been provided.403 Forbidden: The request was a valid request, but the server is refusing action.500 Internal Server Error: An unexpected condition was encountered.
Last updated