-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPlayerGrammar.grxml
More file actions
34 lines (30 loc) · 802 Bytes
/
PlayerGrammar.grxml
File metadata and controls
34 lines (30 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<grammar version="1.0" xml:lang="en-US" root="rootRule" tag-format="semantics/1.0-literals" xmlns="http://www.w3.org/2001/06/grammar">
<rule id="rootRule">
<one-of>
<item>
<tag>RECORD</tag>
<one-of>
<item> start recording </item>
<item> record </item>
</one-of>
</item>
<item>
<tag>PLAY</tag>
<one-of>
<item> start playing </item>
<item> play </item>
</one-of>
</item>
<item>
<tag>STOP</tag>
<one-of>
<item> stop recording </item>
<item> stop playing </item>
<item> stop </item>
<item> finish </item>
<item> end </item>
</one-of>
</item>
</one-of>
</rule>
</grammar>