Skip to content
Snippets Groups Projects
user avatar
tanel authored
45d19375
History
Name Last commit Last update
src
README
WHAT IT IS
----------

GStreamer plugin that wraps Kaldi's SingleUtteranceNnet2Decoder.

HOW TO COMPILE IT
-----------------

The following works on Linux (I'm using Debian 'testing').

Compile Kaldi trunk, using the shared configuration:
In Kaldi's 'src' directory:

./configure --shared
make depend
make

Install gstreamer-1.0:

sudo apt-get install gstreamer1.0-plugins-bad  gstreamer1.0-plugins-base gstreamer1.0-plugins-good  gstreamer1.0-pulseaudio  gstreamer1.0-plugins-ugly  gstreamer1.0-tools libgstreamer1.0-dev

Now we can compile this plugin. Change to 'src' of this project:

cd src

Compile, specifying Kaldi's root directory:

KALDI_ROOT=/path/of/kaldi-trunk make

This should result in 'libgstkaldionline2.so'.

HOW TO USE IT
-------------

TODO