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 logokotlin
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 logokotlin
// 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.

By clicking “Subscribe”, you agree that DeepMedia may use your email address to send you newsletters, including commercial communications, and to process your personal data for this purpose. You agree that DeepMedia may process said data using third-party services for this purpose in accordance with the DeepMedia Privacy Policy. You can revoke this consent at any time using the unsubscribe link included in each email or by writing at contact@deepmedia.io.