forked from hitesh915/speech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelloWorld
429 lines (394 loc) · 13.8 KB
/
HelloWorld
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/*
* Copyright 1999-2004 Carnegie Mellon University.
* Portions Copyright 2004 Sun Microsystems, Inc.
* Portions Copyright 2004 Mitsubishi Electric Research Laboratories.
* All Rights Reserved. Use is subject to license terms.
*
* See the file "license.terms" for information on usage and
* redistribution of this file in the Sphinx package, and for a DISCLAIMER OF ALL
* WARRANTIES.
*
* i have just modified the actual HelloWorld.java file by adding few lines of code.
* make sure you have a look on the grammar file that i have uploaded.
* all the best.
*
*/
package demo.sphinx.helloworld;
import edu.cmu.sphinx.frontend.util.Microphone;
import edu.cmu.sphinx.recognizer.Recognizer;
import edu.cmu.sphinx.result.Result;
import edu.cmu.sphinx.util.props.ConfigurationManager;
import edu.cmu.sphinx.util.props.PropertyException;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import javax.speech.recognition.ResultToken;
/**
* A simple HelloWorld demo showing a simple speech application
* built using Sphinx-4. This application uses the Sphinx-4 endpointer,
* which automatically segments incoming audio into utterances and silences.
*/
public class HelloWorld {
/**
* Main method for running the HelloWorld demo.
*/
static int i=1;
static String resultText;
public static void main(String[] args) {
try {
URL url;
if (args.length > 0) {
url = new File(args[0]).toURI().toURL();
} else {
url = HelloWorld.class.getResource("helloworld.config.xml");
}
System.out.println("Loading...");
ConfigurationManager cm = new ConfigurationManager(url);
Recognizer recognizer = (Recognizer) cm.lookup("recognizer");
Microphone microphone = (Microphone) cm.lookup("microphone");
/* allocate the resource necessary for the recognizer */
recognizer.allocate();
/* the microphone will keep recording until the program exits */
if (microphone.startRecording())
{
System.out.println("Say: (Command | Program| Browser | Bluetooth | Device Manager |Power Options |Cal | Control | Player |task manager | Windows Security Center)");
System.out.println("Say: ( open word | open phot oshop|open Access|start Excel|start nero |start fire wall| open Pad |open Paint)");
while (true)
{
System.out.println("Start speaking. Press Ctrl-C to quit.\n");
/*
* This method will return when the end of speech
* is reached. Note that the endpointer will determine
* the end of speech.
*/
Result result = recognizer.recognize();
if (result != null)
{
System.out.println("Enter your choise"+ "\n");
resultText = result.getBestFinalResultNoFiller();
System.out.println("You said: " + resultText + "\n");
if(resultText.equalsIgnoreCase("command"))
{
try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start cmd");
//System.out.println("You said");
//resultText = result.getBestFinalResultNoFiller();
//System.out.println("You said: " + resultText + "\n");
}catch(Exception er)
{}
}if (resultText.equalsIgnoreCase("close command"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im cmd.exe /f");
}catch(Exception ae){}
}
if (resultText.equalsIgnoreCase("Power Options"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c powercfg.cpl");
}catch(Exception ae){}
}
if (resultText.equalsIgnoreCase("Blue"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c fsquirt");
}catch(Exception ae){}
}
if (resultText.equalsIgnoreCase("start photo shop"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start photoshop");
}catch(Exception ae){}
}
if (resultText.equalsIgnoreCase("calculator"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start calc");
}catch(Exception ae){}
}
if (resultText.equalsIgnoreCase("Windows Security Center"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c wscui.cpl");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("Player"))
{
try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start wmplayer");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("Program"))
{
try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start appwiz.cpl");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("Control"))
{
try{
Process p;
// resultText="";
p = Runtime.getRuntime().exec("cmd /c control");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("open paint"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start mspaint");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("close paint"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im mspaint.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("close calculator"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im calc.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("Browser"))
{
try{
Process p;// resultText="";
p = Runtime.getRuntime().exec("cmd /c start chrome.exe");
// System.out.println("inside");
}catch(Exception ae){}
}else if (resultText.equalsIgnoreCase("close Browser"))
{
try{
Process p;// resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im chrome.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("task manager"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskmgr.exe");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("Adobe"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start acrord32.exe");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("site face book"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start chrome www.facebook.com");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("site go girl"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start chrome www.google.com");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("site mail"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start chrome https://mail.google.com");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("close task manager"))
{ try{
Process p;
//resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im taskmgr.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("open pad"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start notepad");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("close pad"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im notepad.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("open word"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start winword");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("close word"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im winword.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("start word pad"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c write");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("stop word pad"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im wordpad.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("start Excel"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start excel");
// System.out.println("inside");
}catch(Exception ae){}
}else if (resultText.equalsIgnoreCase("stop Excel"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im excel.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("start firewall"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start firewall.cpl");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("close fire wall"))
{
try{
Process p; //resultText="";
String status = "status eq Windows Firewall";
p = Runtime.getRuntime().exec("cmd /c taskkill /f /fi " +status );
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("start nero"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start nero");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("open Access"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start msaccess");
// System.out.println("inside");
}catch(Exception ae){}
}
else if (resultText.equalsIgnoreCase("close access"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start taskkill /im msaccess.exe /f");
// System.out.println("inside");
}catch(Exception ae){}
}
else if(resultText.equalsIgnoreCase("speech recognize complete"))
{
try{
System.out.println("Thanks for using !");
recognizer.deallocate();
System.exit(0);}
catch(Exception ecomp ){}
}
else if(resultText.equalsIgnoreCase("speech recognize start"))
{
try{
recognizer.notify();
System.out.println("Hello again :-) ");
System.exit(0);}
catch(Exception estart ){}
}
else if(resultText.equalsIgnoreCase("stop recognize"))
{
try{
//recognizer.wait();
System.out.println("See you later!");
System.exit(0);}
catch(Exception estop ){}
}
else if (resultText.equalsIgnoreCase("Device Manager"))
{
try{
Process p; //resultText="";
p = Runtime.getRuntime().exec("cmd /c start devmgmt.msc");
// System.out.println("inside");
}catch(Exception ae){}
}
}
else
{
System.out.println("I can't hear what you said.\n");
}
}
}
else
{
System.out.println("Cannot start microphone.");
recognizer.deallocate();
System.exit(1);
}
} catch (IOException e) {
System.err.println("Problem when loading HelloWorld: " + e);
e.printStackTrace();
} catch (PropertyException e) {
System.err.println("Problem configuring HelloWorld: " + e);
e.printStackTrace();
} catch (InstantiationException e) {
System.err.println("Problem creating HelloWorld: " + e);
e.printStackTrace();
}
}
}