bitmovin / bitmovin-api-sdk-java

Java API SDK which enables you to seamlessly integrate the Bitmovin API into your projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bitmovin Java API SDK Header

Java API SDK which enables you to seamlessly integrate the Bitmovin API into your projects.

Maven Javadocs License

Using this API client requires an active account.

Don't have an account yet? Sign up for a free Bitmovin trial plan!


Documentation & Release Notes

Support

If you have any questions or issues with this SDK or its examples, or you require other technical support for our services, please login to your Bitmovin Dashboard at https://bitmovin.com/dashboard and create a new support ticket. Our team will get back to you as soon as possible 👍


Installation

Maven

Add this dependency to your project's POM:

<dependency>
  <groupId>com.bitmovin.api.sdk</groupId>
  <artifactId>bitmovin-api-sdk</artifactId>
  <version>1.185.0</version>
  <scope>compile</scope>
</dependency>

To install the API client library to your local Maven repository, simply execute:

mvn clean install

Gradle

Add this dependency to your project's build file:

compile group: 'com.bitmovin.api.sdk', name: 'bitmovin-api-sdk', version: '1.185.0'

Initialization

import com.bitmovin.api.sdk.BitmovinApi;

BitmovinApi bitmovinApi = BitmovinApi.builder()
    .withApiKey("<YOUR_API_KEY>")
    .build();

Examples

You can find sample workflow scripts in the Bitmovin API SDK examples repository.


Deprecated API Client (Legacy)

bitmovin-api-sdk-java is the latest Bitmovin API client for Java. It guarantees 100% specification conformity at any given time and access to all features of the API as soon as they are released.

However, if you need to use the previous version for legacy reasons, you can still find it at bitmovin-java.

About

Java API SDK which enables you to seamlessly integrate the Bitmovin API into your projects

License:MIT License


Languages

Language:Java 100.0%