Transcription Request
Use the following commands to submit a transcription request to the V‑Cloud API.
- Set a variable with a valid V‑Cloud token
token
=your-token-here
- Set a variable specifying an audio file to transcribe
file
=/path/to/audioSample.wav
- Submit audio for transcription with parameters
response=
$(curl -s -F "file
=@$file;
type
=audio/x-wav
" -F "token
=$token
" -F "model
=eng1:callcenter
" -F "emotion
=true
" -F "gender
=true
" -X POST https://vcloud.vocitec.com/transcribe) && echo $response && requestid=$(echo $response | cut -d\" -f4)