Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] ASR using mod_unimrcp, vlingo


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
jim.page at redmatter.com
Guest





PostPosted: Thu Sep 24, 2009 3:36 am    Post subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo Reply with quote

Hi All

Has anyone had any experience doing ASR with mod_unimrcp in javascript? In particular, how do you deal with grammars? A simple piece of demo code would be massively appreciated - the documentation on mod_unimrcp ASR javascript bindings is TBD, which I assume means 'to be documented' ... unless it means 'to be developed' ...

Also is anyone aware of a vlingo integration for freeswitch?

All the best
Jim

_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
achaloyan at yahoo.com
Guest





PostPosted: Thu Sep 24, 2009 11:40 am    Post subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo Reply with quote

Hi Jim,

From conceptual viewpoint, mod_unimrcp is just an alternate implementation of an abstract ASR/TTS interface FreeSWITCH provides.
Therefore you can use it exactly the same way as other ASR/TTS modules.
See scripts/javascript/ps_pizza.js in FS tree for a working example.

The only thing you should know and change there is module name
< var asr = new SpeechDetect(session, "pocketsphinx");
Quote:
var asr = new SpeechDetect(session, "unimrcp");

Typically you can specify any grammar your MRCP server supports.

From: Jim Page <jim.page@redmatter.com>
To: "freeswitch-users@lists.freeswitch.org" <freeswitch-users@lists.freeswitch.org>
Sent: Thursday, September 24, 2009 1:25:20 PM
Subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo

Hi All

Has anyone had any experience doing ASR with mod_unimrcp in javascript? In particular, how do you deal with grammars? A simple piece of demo code would be massively appreciated - the documentation on mod_unimrcp ASR javascript bindings is TBD, which I assume means 'to be documented' ... unless it means 'to be developed' ...

Also is anyone aware of a vlingo integration for freeswitch?

All the best
Jim

_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
jim.page at redmatter.com
Guest





PostPosted: Thu Sep 24, 2009 12:36 pm    Post subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo Reply with quote

Hi Arsen

Thanks for your message – it inspired us to do what we should have done in the first place, and look at the code. The problem we were having was related to grammar files not being available locally. Now we have discovered the “builtin:” keyword we are up and running J

Many thanks
Jim

From: freeswitch-users-bounces@lists.freeswitch.org [mailto:freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Arsen Chaloyan
Sent: 24 September 2009 18:24
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] ASR using mod_unimrcp, vlingo



Hi Jim,

Quote:
From conceptual viewpoint, mod_unimrcp is just an alternate implementation of an abstract ASR/TTS interface FreeSWITCH provides.
Therefore you can use it exactly the same way as other ASR/TTS modules.
See scripts/javascript/ps_pizza.js in FS tree for a working example.

The only thing you should know and change there is module name
< var asr = new SpeechDetect(session, "pocketsphinx");
Quote:
var asr = new SpeechDetect(session, "unimrcp");

Typically you can specify any grammar your MRCP server supports.

From: Jim Page <jim.page@redmatter.com>
To: "freeswitch-users@lists.freeswitch.org" <freeswitch-users@lists.freeswitch.org>
Sent: Thursday, September 24, 2009 1:25:20 PM
Subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo

Hi All

Has anyone had any experience doing ASR with mod_unimrcp in javascript? In particular, how do you deal with grammars? A simple piece of demo code would be massively appreciated - the documentation on mod_unimrcp ASR javascript bindings is TBD, which I assume means 'to be documented' ... unless it means 'to be developed' ...

Also is anyone aware of a vlingo integration for freeswitch?

All the best
Jim

_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Thu Sep 24, 2009 2:22 pm    Post subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo Reply with quote

if you find the time, can you add that to the wiki too?


On Thu, Sep 24, 2009 at 12:07 PM, Jim Page <jim.page@redmatter.com (jim.page@redmatter.com)> wrote:
Quote:

Hi Arsen
 
Thanks for your message – it inspired us to do what we should have done in the first place, and look at the code. The problem we were having was related to grammar files not being available locally. Now we have discovered the “builtin:” keyword we are up and running J
 
Many thanks
Jim
 
From: freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org) [mailto:freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)] On Behalf Of Arsen Chaloyan
Sent: 24 September 2009 18:24
To: freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)

Subject: Re: [Freeswitch-users] ASR using mod_unimrcp, vlingo



 
Hi Jim,

Quote:
From conceptual viewpoint, mod_unimrcp is just an alternate implementation of an abstract ASR/TTS interface FreeSWITCH provides.
Therefore you can use it exactly the same way as other ASR/TTS modules.
See scripts/javascript/ps_pizza.js in FS tree for a working example.

The only thing you should know and change there is module name
< var asr = new SpeechDetect(session, "pocketsphinx");
Quote:
var asr = new SpeechDetect(session, "unimrcp");

Typically you can specify any grammar your MRCP server supports.

From: Jim Page <jim.page@redmatter.com (jim.page@redmatter.com)>
To: "freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)" <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Sent: Thursday, September 24, 2009 1:25:20 PM
Subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo

Hi All

Has anyone had any experience doing ASR with mod_unimrcp in javascript? In particular, how do you deal with grammars? A simple piece of demo code would be massively appreciated - the documentation on mod_unimrcp ASR javascript bindings is TBD, which I assume means 'to be documented' ... unless it means 'to be developed' ...

Also is anyone aware of a vlingo integration for freeswitch?

All the best
Jim

_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org







_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
jim.page at redmatter.com
Guest





PostPosted: Fri Sep 25, 2009 6:17 am    Post subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo Reply with quote

Anthony, I am embarassed to say that it's already documented in the mod_unimrcp wiki page now I come to look at it ... I can't understand how we didn't see that. Must try harder.

I have however added the mod_unimrcp page to the Modules page in the wiki - it wasn't there before, and I have marked the mod_openmrcp page as DEPRECATED. Hope that's ok. If you like we can put together something for the currently 'TBD' javascript section in the next few days.

From: freeswitch-users-bounces@lists.freeswitch.org [freeswitch-users-bounces@lists.freeswitch.org] On Behalf Of Anthony Minessale [anthony.minessale@gmail.com]
Sent: 24 September 2009 20:01
To: freeswitch-users@lists.freeswitch.org
Subject: Re: [Freeswitch-users] ASR using mod_unimrcp, vlingo



if you find the time, can you add that to the wiki too?


On Thu, Sep 24, 2009 at 12:07 PM, Jim Page <jim.page@redmatter.com (jim.page@redmatter.com)> wrote:
Quote:

Hi Arsen

Thanks for your message – it inspired us to do what we should have done in the first place, and look at the code. The problem we were having was related to grammar files not being available locally. Now we have discovered the “builtin:” keyword we are up and running J

Many thanks
Jim

From: freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org) [mailto:freeswitch-users-bounces@lists.freeswitch.org (freeswitch-users-bounces@lists.freeswitch.org)] On Behalf Of Arsen Chaloyan
Sent: 24 September 2009 18:24
To: freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)

Subject: Re: [Freeswitch-users] ASR using mod_unimrcp, vlingo





Hi Jim,

Quote:
From conceptual viewpoint, mod_unimrcp is just an alternate implementation of an abstract ASR/TTS interface FreeSWITCH provides.
Therefore you can use it exactly the same way as other ASR/TTS modules.
See scripts/javascript/ps_pizza.js in FS tree for a working example.

The only thing you should know and change there is module name
< var asr = new SpeechDetect(session, "pocketsphinx");
Quote:
var asr = new SpeechDetect(session, "unimrcp");

Typically you can specify any grammar your MRCP server supports.

From: Jim Page <jim.page@redmatter.com (jim.page@redmatter.com)>
To: "freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)" <freeswitch-users@lists.freeswitch.org (freeswitch-users@lists.freeswitch.org)>
Sent: Thursday, September 24, 2009 1:25:20 PM
Subject: [Freeswitch-users] ASR using mod_unimrcp, vlingo

Hi All

Has anyone had any experience doing ASR with mod_unimrcp in javascript? In particular, how do you deal with grammars? A simple piece of demo code would be massively appreciated - the documentation on mod_unimrcp ASR javascript bindings is TBD, which I assume means 'to be documented' ... unless it means 'to be developed' ...

Also is anyone aware of a vlingo integration for freeswitch?

All the best
Jim

_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org







_______________________________________________
FreeSWITCH-users mailing list
FreeSWITCH-users@lists.freeswitch.org (FreeSWITCH-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/
Twitter: http://twitter.com/FreeSWITCH_wire

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services