The Speechmatics Batch Virtual Appliance exposes a REST Speech API to enable communication between a client application and the appliance over a HTTP or HTTPS connection. This provides the ability to convert a media file into a text transcript, providing words, speaker, and timing information.
For the purposes of this guide the following terms are used.
Term | Description |
---|---|
Client | An application connecting to the Batch Virtual Appliance using the Transcription API. The client will provide audio containing speech, and process the transcripts received as a result. |
Management API | The REST API that allows administrators to manage the virtual appliance over port 8080 (or 443 for secure access). To access the documentation you can use the following endpoints: http://${APPLIANCE_HOST}:8080/docs/ or https://${APPLIANCE_HOST}/docs/ , where ${APPLIANCE_HOST} is the IP address or hostname of your appliance. |
Speech V2 API | The REST API that allows users of the appliance to submit ASR jobs over port 8082 (or 443 for secure access). The endpoints https://${APPLIANCE_HOST}/v2/jobs/ or http://${APPLIANCE_HOST}:8082/v2/jobs/ can be used. |
Batch Virtual Appliance | The appliance (VM) that provides ASR transcription capability. |
In order to use the REST Speech API you need access to a Batch Virtual Appliance. See the Speechmatics Virtual Appliance Installation and Admin Guide on how to install, configure, and license the appliance.
You do not need user credentials (such as an authorization token) to use the Speech API with the Batch Virtual Appliance.
A variety of audio formats for input are supported; there is no need to specify the audio format when it is submitted for transcription; the Batch Virtual Appliance automatically detects the format and handles it using the correct decoder. The current audio formats are supported:
Note: the native formats are 16KHz or 8KHz (PCM32 LE) WAV; for the best results and performance we recommend that you submit files in that format.
The V2 API is the primary way via which all customers should submit media and retrieve transcripts on the Batch Virtual Appliance.
The maximum file size supported is 4GB, or up to 2 hours in length. Anything larger must be chunked into smaller sections in order to be successfully transcribed.
In the V2 API, three output formats are available: json-v2
(the default), txt
, and srt
. The current version of this output is 2.7. If the output format is set to txt
, the file is returned in plain text rather than JSON format. If the output format is set to srt
, the file is returned in the SubRip subtitle format instead.
In the V1 API, four output formats for transcription are available: json
(the default), json-v2
, txt
, and srt
. If you want JSON output it is recommended to use json-v2
.
If you have problems making a call, ensure that you are using exactly the same URI format as shown in this document. For instance, not including the trailing '/' character on the URIs will cause a 302 redirect response to be sent – if your client does not handle redirects then this may cause problems.
Code samples in this guide expect you to use curl for making HTTP requests to the Management API, and the jq tool to parse and display JSON responses.
The easiest way to access the APIs and online help is via the following URL on the appliance:
http://${APPLIANCE_HOST}:8080/help/
This page allows you to access the documentation from the browser as well as providing links to the APIs.
On a Windows PC you can use these download and installation links to get these tools:
https://curl.haxx.se/download.html
https://stedolan.github.io/jq/download/
Use the relevant package manager for your flavor of Linux, which will either be:
$ apt install curl jq
or
$ yum install curl jq
On the Mac, the easiest way to install these utilities is using Homebrew:
$ brew install curl jq
Language | ISO Code |
---|---|
Arabic | ar |
Bulgarian | bg |
Catalan | ca |
Mandarin | cmn |
Czech | cs |
Danish | da |
German | de |
Greek | el |
Global English | en |
Global Spanish | es |
Finnish | fi |
French | fr |
Hindi | hi |
Croatian | hr |
Hungarian | hu |
Indonesian | id |
Italian | it |
Japanese | ja |
Korean | ko |
Lithuanian | lt |
Latvian | lv |
Malay | ms |
Dutch | nl |
Norwegian | no |
Polish | pl |
Portuguese | pt |
Romanian | ro |
Russian | ru |
Slovakian | sk |
Slovenian | sl |
Swedish | sv |
Turkish | tr |
Cantonese | yue |