GiviMAD / libfvad-jni

A JNI wrapper for libfvad, enables voice activity detection in Java.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LibfvadJNI

A JNI wrapper for libfvad, allows voice activity detection in Java.

Platform support

This library aims to support the following platforms:

  • Windows x86_64 (built with mingw)
  • Debian x86_64/arm64 (built with GLIBC 2.31)
  • macOS x86_64/arm64 (built targeting v11.0)

The native binaries for those platforms are included in the distributed jar.

Please open an issue if you found it don't work on any of the supported platforms.

Installation

The package is distributed through Maven Central.

You can also find the package's jar attached to each release.

Example

A very basic example extracted from the tests.

        VoiceActivityDetector vad = VoiceActivityDetector.newInstance();
        int sampleRate = 16000;
        vad.setMode(VoiceActivityDetector.Mode.QUALITY);
        vad.setSampleRate(VoiceActivityDetector.SampleRate.fromValue(sampleRate));
        short[] samples = ...;
        int samplesLength = samples.length;
        int step = (sampleRate / 1000) * 10; // 10ms step (only allows 10, 20 or 30ms frame)
        int detection = 0;
        for(int i = 0; i < samplesLength - step; i+=step) {
            short[] frame = Arrays.copyOfRange(samples, i, i+step);
            if(vad.process(frame)) {
                // voice has been detected
                detection = i;
                break;
            }
        }
        vad.close();

Building and testing the project.

You need Java and Cpp setup.

After cloning the project you need to init the libfvad submodule by running:

git submodule update --init

Run the appropriate build script for your platform (build_debian.sh, build_macos.sh or build_win.ps1), it will place the native library file on the resources directory.

Finally you can run the project tests to confirm it works:

mvn test

BR

About

A JNI wrapper for libfvad, enables voice activity detection in Java.

License:Apache License 2.0


Languages

Language:Java 76.9%Language:Shell 11.8%Language:C++ 6.7%Language:PowerShell 4.6%