JSGF Editor is a web application that allows you to edit speech recognition grammars online.
JSGF (short for Java Speech Grammar Format or JSpeech Grammar Format) is a formal grammar specification for speech recognition. A speech recognition grammar is a set of rules defining word patterns that the speech recognition engine will recognize. The JSGF specification is defined in the W3C JSGF specification.
Here are some example JSGF grammars:
#JSGF V1.0;
grammar grammarOne;
public <color> = red | green | blue;
#JSGF V1.0;
grammar grammarTwo;
<action> = open | close;
<object> = door | window;
public <command> = <action> <object>;
JSGF Editor is a web application that allows you to edit speech recognition grammar files online. It is intended to be used by developers who want to create or edit speech recognition grammars.
You can either open and edit an existing grammar file or create a new one from scratch. The JSGF syntax highlighting feature makes it easier to read and edit the grammar files.