Java SDK Reference
Installation
The AssemblyAI Java SDK requires Java 8 or higher.
Gradle
Add the dependency in your build.gradle
:
Maven
Add the dependency in your pom.xml
:
HTTP Client Usage
The SDK exports a vanilla HTTP client, AssemblyAI
. You can
use this to call into each of our API endpoints and get typed
responses back.
Handling Errors
When the API returns a non-success status code (4xx or 5xx response), a subclass of ApiError will be thrown:
Creating a transcript
When you create a transcript, you can either pass in a URL to an audio file or upload a file directly.
transcribe
queues a transcription job and polls it until the status is completed or error.
If you don’t want to wait until the transcript is ready, you can use submit:
Using the Realtime Transcriber
The Realtime Transcriber can be used to process any live audio streams and sends data over websockets. The Realtime Transcriber will take event handlers
Staged Builders
The generated builders all follow the staged builder pattern. Read more here. Staged builders only allow you to construct the object once all required properties have been specified.
For example, in the snippet below, you will not be able to access the build
method on CreateTranscriptParameters
until you have specified the mandatory
audioUrl variable.
Timeouts
The SDK uses the default timeouts of OkHttpClient:
- 10 seconds for connection timeout
- 10 seconds for read timeout
- 10 seconds for write timeout
- No timeout for call timeout
However, there are no timeouts for any LeMUR HTTP request.
To specify your own timeout, you can pass RequestOptions
to each request method:
For this operation, the call timeout will be 30 seconds, and the other timeouts will be turned off.
The default timeout should be sufficient for most use cases. However, depending on your network speed and distance, you may occasionally experience timeouts, in which case you can increase the timeout.
Android
If you’ve enabled Code shrinking using minifyEnabled
, you need to add the following ProGuard configuration to keep R8 from incorrectly marking the SDK classes as unused.