Voice/Audio File to Text Transcription API 1.0
Now developers can access the same high quality Human or Automated Voice to Text Conversion utilized by VoiceCloud in their own applications.
If you need true accuracy, VoiceCloud’s high quality human Voice to Text is the solution for transcription of addresses, phone numbers, invoice numbers, names and email addresses.
VoiceCloud provides a superior service with 99% accuracy for a reasonable price. We have the infrastructure and flexibility to handle any high-volume transcription needs with the highest quality.
We Transcribe:
General Business
Conference calls
Dictation notes
Business meetings
Focus groups
Keynote address
Insurance
Interviews
Market research
Secretarial
Video conference
Voice mail
Webcasts
Webinars
Media Industry
Interviews
Post production
Reality TV
Podcasts
Video captions
Legal Services
Depositions
Dictation
Hearings
Insurance claims
Investigative
Verbatim
Wiretaps
Court proceedings
Academic / Non-profit
Thesis notes
Dissertation
Lectures
Speeches
Student notes
Interviews
Grants
Seminars
Sermons
Research
Oral history
Our Patented Technology allows files to be broken into smaller segments for speed and security.
“A transcription method for facilitating the transcription of audio messages by a group of agent transcribers, comprising: receiving an audio message from a customer via a telephone; determining whether one of the agent transcribers is available; storing the audio message when an agent transcriber is not available; continuing to determine whether a transcriber is available; streaming in real time a streamed portion of the audio message to a first available agent transcriber for facilitating the transcription of the streamed portion of the audio message into a first portion of a transcription text file; providing subsequently a pre-streamed recorded portion of the audio message to a subsequently available second agent transcriber for facilitating the transcription of the pre-streamed recorded portion of the audio message into a second portion of the transcription text file while the streaming in real time is continuing with the first agent transcriber; and combining the first and second portions of the transcription text file into a consolidated text file.”VoiceCloud’s US Patent Number 8,259,910
(Published September 4, 2012)
Sending Audio to VoiceCloud
Developers will have access to our API function calls which allows you to submit mp3 or wav files to our system. The audio files you submit to us must be hosted on an http server that can be accessed by our software. Once the API call is made, our servers will fetch the audio file and submit it to our queuing system to be transcribed by our agents. The audio files will be accessible from your VoiceCloud login account including the transcribed text when completed.
Sample Call:
- http://voicecloudURL/api?action=sendfile
&username=youruserid
&devkey=abc123
&idtype=username
&fileurl=http://yourserver/file.mp3
&filetype=mp3
&callerid=18005551212optional
&metadata=
&customcallback=
Results:
- <?xml version=”1.0″ encoding=”ISO-8859-1″?>
<vcapi>
<action>sendfile</action>
<transactionuid>4760</transactionuid>
</vcapi>
The “sendfile” action returns a unique transactionuid number so your system can identify which audio was transcribed when we return the text back to your server.
Receiving Text From VoiceCloud
After the transcription process has completed, the resulting transcribed text and tranactionuid will be submitted to a form on your server as name=value pairs. You will need to supply us ahead of time with the URL to the form on your server. We use a POST method to send this data to your form.
Variables transactionuid (unique ID number for your transcribed audio) transcribed_text
Sample Scripts: Perl script which takes the data and appends it to a text file.
