Any shell script, perl, or php experts?

I am trying to develop a custom dialog manager to handle voice recognition and my coding skills are poor at best. So any linux shell scripting, perl, or php experts??
 
There's a good bit on knowledge floating around here. Perhaps if you could give a little more detail as to what you want to accomplish. The teaser sounds interesting enough. ;)

Terry
 
What you are talking about is already implemented in MisterHouse. It's all Perl.

Code:
#-----------------------------------
# Example of voice commands
#-----------------------------------
$pa_radio			= new  Serial_Item('DBHD', ON);
$pa_radio		   -> add			 ('DBLD', OFF);
$v_pa_radio = new  Voice_Cmd('Radio [on,off]');
set $pa_radio $state if $state = said $v_pa_radio;

$humidity_inside	 = new  Serial_Item('AE5');
$v_downstairs_humidity = new  Voice_Cmd('What is the downstairs humidity');
speak('The downstairs humidity is ' . state_now $humidity_inside . ' %') if said $v_downstairs_humidity;
 
The Misterhouse module uses pocketsphinx, which I have had no luck with. I've already been in conversation with that email list regarding integrating Julius with Misterhouse but yet no response.
I am just piping the output of julius into it, although julius can run in port mode


EDIT: the forum gives me a POST error when I try to put in my code here
 
Back
Top