libfvad Documentation

repository·master·Indexed 20 days ago

https://github.com/dpirch/libfvad

A standalone Voice Activity Detection (VAD) library based on a fork of the WebRTC Native Code package engine, decoupled to function independently of the full WebRTC codebase.

Tokens
339
Snippets
3
Records
4
Agent score
20%

What's inside libfvad

  1. Enable libfvad examples

    master

    To build the optional example programs provided with the library, use the --enable-examples flag during the configuration step. This requires the libsndfile development headers to be installed on your system (e.g., apt install libsndfile1-dev on Debian/Ubuntu).

    ./configure --enable-examples
    make
  2. Build and install libfvad

    master

    libfvad uses autoconf/automake. If you are building from a cloned git repository, you must first run autoreconf -i to generate the configure script. This requires autoconf, libtool, and pkg-config (e.g., sudo apt install autoconf libtool pkg-config on Debian/Ubuntu).

    To build and install the library, use the standard build sequence:

    1. ./configure
    2. make
    3. sudo make install
    # If building from git, generate configure script first
    autoreconf -i
    
    # Standard build and install
    ./configure
    make
    sudo make install