Browse
 
Tools
Rss Categories

Methods

51 LVSpeechPort::InterpretText

This function passes a string through an active voice grammar and provides a semantic interpretation. Instead of performing speech recognition on actual audio, this function is used only to evaluate the semantic interpretation of text strings against grammars.…

52 LVSpeechPort::IsGrammarLoaded

LVSpeechPort::IsGrammarLoaded Check if a grammar has already been loaded. Function bool IsGrammarLoaded(const char* gram_name) Parameters gram_name The identifier for the grammar being queried. This is the same identifier you gave the grammar when you loaded…

53 LVSpeechPort::IsServerAvailable

LVSpeechPort::IsServerAvailable Check if any of the listed ASR servers (either set in client_property.conf or as set for PROP_EX_SRE_SERVERS) are reachable on the specified ports. Function static int IsServerAvailable(void) Return Values 1 Indicates that…

54 LVSpeechPort::LoadGlobalGrammar (Deprecated)

Loads a grammar into the speech client process' global space. A grammar loaded this way is called a global grammar and is associated with the speech client process that loads it. All speech ports that are created in the client process have access to that…

55 LVSpeechPort::LoadGlobalGrammarFromBuffer (Deprecated)

Loads a grammar specified as a string buffer into the speech client process' global space. A grammar loaded this way is called a global grammar and is associated with the speech client process that loads it. All speech ports that are created in the client…

56 LVSpeechPort::LoadGlobalGrammarFromObject (Deprecated)

Loads a grammar specified as a reference to an LVGrammar object into the speech client process' global space. A grammar loaded this way is called a global grammar and is associated with the speech client process that loads it. All speech ports that are created…

57 LVSpeechPort::LoadGrammar

Loads an SRGS grammar into the speech port for later use in a decode, DTMF decode or interpret text operation. Function int LoadGrammar(const char* gram_name, const char* gram_uri) int LoadGrammar(const char* gram_uri) Parameters gram_name The identifier…

58 LVSpeechPort::LoadGrammarFromBuffer

Loads an SRGS grammar specified as a string buffer into the speech port for later use in a decode, DTMF decode or interpret text operation. Function int LoadGrammarFromBuffer(const char* gram_name, const char* gram_buffer) Parameters gram_name The identifier…

59 LVSpeechPort::LoadGrammarFromObject

Loads an SRGS grammar contained within a LVGrammar object into the speech port for later use in a decode, DTMF decode or interpret text operation. Function int LoadGrammarFromObject(const char* gram_name, LVGrammar& gram_obj) Parameters gram_name The…

60 LVSpeechPort::LoadGrammarWithParameters

This function can be called to load an SRGS grammar into the ASR from a specified Uniform Resource Identifier (URI) along with an optional list of MRCP-style headers. This function serves to facilitate the loading of grammars when being passed grammar loading…