api.video Android client
api.video is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.
Table of contents
- Project description
- Getting started
- Documentation
- Have you gotten use from this API client?
- Contribution
Project description
api.video's Android client streamlines the coding process. Chunking files is handled for you, as is pagination and refreshing your tokens.
Getting started
Requirements
Building the API client library requires:
- Java 1.8+
- Maven/Gradle
Installation
Maven users
Add this dependency to your project's POM:
<dependency>
<groupId>video.api</groupId>
<artifactId>android-api-client</artifactId>
<version>0.1.0</version>
<scope>compile</scope>
</dependency>
Gradle users
Add this dependency to your project's build file:
implementation "video.api:android-api-client:0.1.0"
Others
At first generate the JAR by executing:
mvn clean package
Then manually install the following JARs:
target/android-api-client-0.1.0.jar
target/lib/*.jar
Code sample
Please follow the installation instruction and execute the following Kotlin code:
import android.os.Bundle
import android.util.Log
import androidx.appcompat.app.AppCompatActivity
import video.api.client.ApiVideoClient
import video.api.client.api.ApiException
import video.api.client.api.models.*
import java.io.File
import java.util.concurrent.ExecutorService
import java.util.concurrent.Executors
class MainActivity : AppCompatActivity() {
private val executor: ExecutorService = Executors.newSingleThreadExecutor()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
override fun onResume() {
super.onResume()
val apiVideoClient = ApiVideoClient("YOUR_API_TOKEN")
// if you rather like to use the sandbox environment:
// val apiVideoClient = ApiVideoClient("YOU_SANDBOX_API_TOKEN", Environment.SANDBOX)
val myVideoFile = File("my-video.mp4")
/**
* Notice: you must not call API from the UI/main thread. Dispatch with Thread, Executors or Kotlin coroutines.
*/
executor.execute {
try {
var video = apiVideoClient.videos().create(VideoCreationPayload().title("my video"))
video = apiVideoClient.videos().upload(video.videoId, myVideoFile)
Log.i("Example", "$video")
} catch (e: ApiException) {
Log.e("Example", "Exception when calling VideoApi")
e.message?.let {
Log.e("Example", "Reason: ${it}")
}
}
}
}
}
Example
An example that demonstrates how to use the API is provided in folder example/
.
Permissions
You have to add the following permissions in your AndroidManifest.xml
:
<uses-permission android:name="android.permission.INTERNET" />
<!-- Application requires android.permission.READ_EXTERNAL_STORAGE to upload videos` -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Your application also has to dynamically request the android.permission.READ_EXTERNAL_STORAGE
permission to upload videos.
Documentation
API Endpoints
All URIs are relative to https://ws.api.video
CaptionsApi
Retrieve an instance of CaptionsApi:
val client = ApiVideoClient("YOUR_API_TOKEN")
val captions = client.captions()
Endpoints
Method | HTTP request | Description |
---|---|---|
delete | DELETE /videos/{videoId}/captions/{language} | Delete a caption |
list | GET /videos/{videoId}/captions | List video captions |
get | GET /videos/{videoId}/captions/{language} | Show a caption |
update | PATCH /videos/{videoId}/captions/{language} | Update caption |
upload | POST /videos/{videoId}/captions/{language} | Upload a caption |
ChaptersApi
Retrieve an instance of ChaptersApi:
val client = ApiVideoClient("YOUR_API_TOKEN")
val chapters = client.chapters()
Endpoints
Method | HTTP request | Description |
---|---|---|
delete | DELETE /videos/{videoId}/chapters/{language} | Delete a chapter |
list | GET /videos/{videoId}/chapters | List video chapters |
get | GET /videos/{videoId}/chapters/{language} | Show a chapter |
upload | POST /videos/{videoId}/chapters/{language} | Upload a chapter |
LiveStreamsApi
Retrieve an instance of LiveStreamsApi:
val client = ApiVideoClient("YOUR_API_TOKEN")
val liveStreams = client.liveStreams()
Endpoints
Method | HTTP request | Description |
---|---|---|
delete | DELETE /live-streams/{liveStreamId} | Delete a live stream |
deleteThumbnail | DELETE /live-streams/{liveStreamId}/thumbnail | Delete a thumbnail |
list | GET /live-streams | List all live streams |
get | GET /live-streams/{liveStreamId} | Show live stream |
update | PATCH /live-streams/{liveStreamId} | Update a live stream |
create | POST /live-streams | Create live stream |
uploadThumbnail | POST /live-streams/{liveStreamId}/thumbnail | Upload a thumbnail |
PlayerThemesApi
Retrieve an instance of PlayerThemesApi:
val client = ApiVideoClient("YOUR_API_TOKEN")
val playerThemes = client.playerThemes()
Endpoints
Method | HTTP request | Description |
---|---|---|
delete | DELETE /players/{playerId} | Delete a player |
deleteLogo | DELETE /players/{playerId}/logo | Delete logo |
list | GET /players | List all players |
get | GET /players/{playerId} | Show a player |
update | PATCH /players/{playerId} | Update a player |
create | POST /players | Create a player |
uploadLogo | POST /players/{playerId}/logo | Upload a logo |
RawStatisticsApi
Retrieve an instance of RawStatisticsApi:
val client = ApiVideoClient("YOUR_API_TOKEN")
val rawStatistics = client.rawStatistics()
Endpoints
Method | HTTP request | Description |
---|---|---|
listLiveStreamSessions | GET /analytics/live-streams/{liveStreamId} | List live stream player sessions |
listSessionEvents | GET /analytics/sessions/{sessionId}/events | List player session events |
listVideoSessions | GET /analytics/videos/{videoId} | List video player sessions |
UploadTokensApi
Retrieve an instance of UploadTokensApi:
val client = ApiVideoClient("YOUR_API_TOKEN")
val uploadTokens = client.uploadTokens()
Endpoints
Method | HTTP request | Description |
---|---|---|
deleteToken | DELETE /upload-tokens/{uploadToken} | Delete an upload token |
list | GET /upload-tokens | List all active upload tokens. |
getToken | GET /upload-tokens/{uploadToken} | Show upload token |
createToken | POST /upload-tokens | Generate an upload token |
VideosApi
Retrieve an instance of VideosApi:
val client = ApiVideoClient("YOUR_API_TOKEN")
val videos = client.videos()
Endpoints
Method | HTTP request | Description |
---|---|---|
delete | DELETE /videos/{videoId} | Delete a video |
get | GET /videos/{videoId} | Show a video |
getStatus | GET /videos/{videoId}/status | Show video status |
list | GET /videos | List all videos |
update | PATCH /videos/{videoId} | Update a video |
pickThumbnail | PATCH /videos/{videoId}/thumbnail | Pick a thumbnail |
uploadWithUploadToken | POST /upload | Upload with an upload token |
create | POST /videos | Create a video |
upload | POST /videos/{videoId}/source | Upload a video |
uploadThumbnail | POST /videos/{videoId}/thumbnail | Upload a thumbnail |
WebhooksApi
Retrieve an instance of WebhooksApi:
val client = ApiVideoClient("YOUR_API_TOKEN")
val webhooks = client.webhooks()
Endpoints
Method | HTTP request | Description |
---|---|---|
delete | DELETE /webhooks/{webhookId} | Delete a Webhook |
get | GET /webhooks/{webhookId} | Show Webhook details |
list | GET /webhooks | List all webhooks |
create | POST /webhooks | Create Webhook |
Documentation for Models
- AccessToken
- AuthenticatePayload
- BadRequest
- BytesRange
- Caption
- CaptionsListResponse
- CaptionsUpdatePayload
- Chapter
- ChaptersListResponse
- Link
- LiveStream
- LiveStreamAssets
- LiveStreamCreationPayload
- LiveStreamListResponse
- LiveStreamSession
- LiveStreamSessionClient
- LiveStreamSessionDevice
- LiveStreamSessionLocation
- LiveStreamSessionReferrer
- LiveStreamSessionSession
- LiveStreamUpdatePayload
- Metadata
- NotFound
- Pagination
- PaginationLink
- PlayerSessionEvent
- PlayerTheme
- PlayerThemeAssets
- PlayerThemeCreationPayload
- PlayerThemeUpdatePayload
- PlayerThemesListResponse
- Quality
- RawStatisticsListLiveStreamAnalyticsResponse
- RawStatisticsListPlayerSessionEventsResponse
- RawStatisticsListSessionsResponse
- RefreshTokenPayload
- TokenCreationPayload
- TokenListResponse
- UploadToken
- Video
- VideoAssets
- VideoCreationPayload
- VideoSession
- VideoSessionClient
- VideoSessionDevice
- VideoSessionLocation
- VideoSessionOs
- VideoSessionReferrer
- VideoSessionSession
- VideoSource
- VideoSourceLiveStream
- VideoSourceLiveStreamLink
- VideoStatus
- VideoStatusEncoding
- VideoStatusEncodingMetadata
- VideoStatusIngest
- VideoThumbnailPickPayload
- VideoUpdatePayload
- VideosListResponse
- Webhook
- WebhooksCreationPayload
- WebhooksListResponse
Documentation for Authorization
API token
Most endpoints required to be authenticated using the API token mechanism described in our documentation. The access token generation mechanism is automatically handled by the client. All you have to do is provide an API token when instantiating the ApiVideoClient:
val client = ApiVideoClient("YOUR_API_TOKEN")
Public endpoints
Some endpoints don't require authentication. These one can be called with a client instantiated without API token:
val client = ApiVideoClient()
Recommendation
It's recommended to create an instance of ApiClient
per thread in a multithreaded environment to avoid any potential issues. Do not call API from the main thread, otherwise you will get a android.os.NetworkOnMainThreadException. Dispatch API calls with Thread, Executors or Kotlin coroutine to avoid this.
Have you gotten use from this API client?
Please take a moment to leave a star on the client
This helps other users to find the clients and also helps us understand which clients are most popular. Thank you!
Contribution
Since this API client is generated from an OpenAPI description, we cannot accept pull requests made directly to the repository. If you want to contribute, you can open a pull request on the repository of our client generator. Otherwise, you can also simply open an issue detailing your need on this repository.