Skip to content
Snippets Groups Projects
Select Git revision
  • 2505298bc1993e1a3861c78cece48b94c9244e8a
  • master default protected
  • ccl
  • jardin
  • cms/general/lorem
  • cms/ccl/ca-marche
  • cms/grenier/index
  • content
  • preview
  • develop
  • deploy
  • test
12 results

adherer.md

Blame
  • README 877 B
    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:
    
    make depend
    KALDI_ROOT=/path/of/kaldi-trunk make
    
    This should result in 'libgstkaldionline2.so'.
    
    Test id GStreamer can access the plugin:
    
    GST_PLUGIN_PATH=. gst-inspect-1.0 kaldinnet2onlinedecoder
    
    
    
    HOW TO USE IT
    -------------
    
    TODO