Transcoder
Menu toggle
latest: v0.10.5 GitHub

Transcoder is publicly hosted on the Maven Central repository, where you can download the AAR package. To fetch with Gradle, make sure you add the Maven Central repository in your root projects build.gradle file:

allprojects {
  repositories {
    mavenCentral()
  }
}

Then simply download the latest version:

api("com.otaliastudios:transcoder:0.10.5")

The library works on API 18+, which is the only requirement and should be met by many projects nowadays.

Snapshots

We deploy snapshots on each push to the main branch. If you want to use the latest, unreleased features, you can do so (at your own risk) by adding the snapshot repository:

allprojects {
  repositories {
    maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
  }
}

and changing the library version from 0.10.5 to latest-SNAPSHOT.