DeepMedia logo
Open Source
Search...

Other versions of this page

Improve this page on GitHub

Search

Installation

Transcoder is publicly hosted on the Maven Central repository, where you can download the AAR package. To fetch with Gradle, assuming that mavenCentral() is already one of your repository sources, simply declare a new dependency:

kotlin
dependencies { api("io.deepmedia.community:transcoder-android:LATEST_VERSION") // Or use the legacy coordinates: // api("com.otaliastudios:transcoder:LATEST_VERSION") }

Replace LATEST_VERSION with the latest version number, 0.11.1.

Snapshots

We regularly push development snapshots of the library at https://s01.oss.sonatype.org/content/repositories/snapshots/ on each push to main. To use snapshots, add the url as a maven repository and depend on latest-SNAPSHOT:

kotlin
// settings.gradle.kts pluginManagement { repositories { gradlePluginPortal() maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") } } // build.gradle.kts dependencies { api("io.deepmedia.community:transcoder-android:latest-SNAPSHOT") // Or use the legacy coordinates: // api("com.otaliastudios:transcoder:latest-SNAPSHOT") }

On this page

More

Subscribe to the DeepMedia Newsletter

The latest news about DeepMedia products, open source projects and software development at our company.