Skip to content

DiegoCast/opuscodec

 
 

Repository files navigation

opuscodec

Opus Audio Codec packaged for Android.

Based on code by λ.eranga as described in "Opus codec with android VOIP application" post on Medium, with the following changes:

  • Opus upgraded to 1.2.1
    • including ARM Neon and Intel SSE support
  • extended encoder API
    • specify profile
    • set bitrate and complexity
  • errors converted to exceptions

Usage

Add this to your main build.gradle:

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

and this to your app's build.gradle:

dependencies {
    compile 'com.github.martoreto:opuscodec:v1.2.1.2'
}

and see example app, specifically MainActivity.java for usage examples.

About

Opus Audio Codec for Android

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 71.7%
  • Shell 10.2%
  • C++ 5.3%
  • Makefile 5.0%
  • Objective-C 4.4%
  • Assembly 1.1%
  • Other 2.3%