Exemple #1
0
    def get_kws(self, *args):
        """
        get_kws(Decoder self, char const * name) -> char const *

        Get the current Key phrase to spot.

        If KWS is not enabled, this returns NULL. Call ps_update_kws() to
        enable it.

        The current keyphrase to spot 
        """
        return _pocketsphinx.Decoder_get_kws(self, *args)
Exemple #2
0
 def get_kws(self, name):
     """get_kws(Decoder self, char const * name) -> char const *"""
     return _pocketsphinx.Decoder_get_kws(self, name)