VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
markmorreny at gmail.com Guest
|
Posted: Fri Dec 26, 2008 3:51 am Post subject: [Freeswitch-users] Need help with openmrcp setup |
|
|
Hi
I tried to setup mod_openmrcp according to wiki, but I am getting the following error:
2008-12-27 00:40:23 [ERR] switch_core_speech.c:60 switch_core_speech_open() Invalid speech module [openmrcp]! 2008-12-27 00:40:23 [ERR] switch_ivr_play_say.c:1848 switch_ivr_speak_text() Invalid TTS module!
Here is my dialplan
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="freeswitch/xml">
<section name="dialplan" description="voicemail dialplan">
<context name="public">
<extension name="test9">
<condition field="destination_number" expression="^(.*)$">
<action application="speak" data="openmrcp:openmrcp-v2|Susan|Hello World"/>
</condition>
</extension>
</context>
</section>
</document>
I checked that mod_openmrcp.so is compiled ok:
[root@localhost bin]# ls ../mod/mod_openmrcp.so -al
-rwxr-xr-x 1 root root 4981560 Dec 26 19:56 ../mod/mod_openmrcp.so
[root@localhost bin]#
Here is what I have in the openmrcp xml config:
[root@localhost freeswitch]# cat conf/mrcp_profiles/openmrcp-v2.xml
<include>
<profile name="openmrcp-v2" description="OpenMRCPv2 Server">
<param name="proto_version" value="2"/>
<param name="client_ip" value="127.0.0.1"/>
<param name="client_port" value="8062"/>
<param name="server_ip" value="192.168.1.109"/>
<param name="server_port" value="5060"/>
<param name="rtp_port_min" value="11000"/>
<param name="rtp_port_max" value="12000"/>
</profile>
</include>
Could someone help me out? I would greatly appreciate any help.
Thanks,
Mark |
|
Back to top |
|
|
mike at jerris.com Guest
|
Posted: Fri Dec 26, 2008 8:31 am Post subject: [Freeswitch-users] Need help with openmrcp setup |
|
|
It looks like mod_openmrcp isn't loaded.
On Dec 26, 2008, at 3:49 AM, mark morreny wrote:
Quote: | Hi
I tried to setup mod_openmrcp according to wiki, but I am getting the following error:
2008-12-27 00:40:23 [ERR] switch_core_speech.c:60 switch_core_speech_open() Invalid speech module [openmrcp]! 2008-12-27 00:40:23 [ERR] switch_ivr_play_say.c:1848 switch_ivr_speak_text() Invalid TTS module!
Here is my dialplan
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="freeswitch/xml">
<section name="dialplan" description="voicemail dialplan">
<context name="public">
<extension name="test9">
<condition field="destination_number" expression="^(.*)$">
<action application="speak" data="openmrcp:openmrcp-v2|Susan|Hello World"/>
</condition>
</extension>
</context>
</section>
</document>
I checked that mod_openmrcp.so is compiled ok:
[root@localhost bin]# ls ../mod/mod_openmrcp.so -al
-rwxr-xr-x 1 root root 4981560 Dec 26 19:56 ../mod/mod_openmrcp.so
[root@localhost bin]#
Here is what I have in the openmrcp xml config:
[root@localhost freeswitch]# cat conf/mrcp_profiles/openmrcp-v2.xml
<include>
<profile name="openmrcp-v2" description="OpenMRCPv2 Server">
<param name="proto_version" value="2"/>
<param name="client_ip" value="127.0.0.1"/>
<param name="client_port" value="8062"/>
<param name="server_ip" value="192.168.1.109"/>
<param name="server_port" value="5060"/>
<param name="rtp_port_min" value="11000"/>
<param name="rtp_port_max" value="12000"/>
</profile>
</include>
Could someone help me out? I would greatly appreciate any help.
Thanks,
Mark
_______________________________________________
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 |
|
|
markmorreny at gmail.com Guest
|
Posted: Fri Dec 26, 2008 9:18 am Post subject: [Freeswitch-users] Need help with openmrcp setup |
|
|
Hi,
Thanks for the hint. I checked the log again and found out:
2008-12-27 06:01:49 [NOTICE] switch_loadable_module.c:259 switch_loadable_module_process() Adding API Function 'lua'
2008-12-27 06:01:49 [CRIT] switch_loadable_module.c:839 switch_loadable_module_load_file() Error Loading module /usr/local/freeswitch/mod/mod_openmrcp.so
**/usr/local/freeswitch/mod/mod_openmrcp.so: undefined symbol: TLSv1_method**
What is causing this problem?
Thanks for all your help.
Mark
On Fri, Dec 26, 2008 at 9:31 PM, Michael Jerris <mike@jerris.com (mike@jerris.com)> wrote:
Quote: | It looks like mod_openmrcp isn't loaded.
On Dec 26, 2008, at 3:49 AM, mark morreny wrote:
Quote: |
Hi
I tried to setup mod_openmrcp according to wiki, but I am getting the following error:
2008-12-27 00:40:23 [ERR] switch_core_speech.c:60 switch_core_speech_open() Invalid speech module [openmrcp]! 2008-12-27 00:40:23 [ERR] switch_ivr_play_say.c:1848 switch_ivr_speak_text() Invalid TTS module!
Here is my dialplan
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="freeswitch/xml">
<section name="dialplan" description="voicemail dialplan">
<context name="public">
<extension name="test9">
<condition field="destination_number" expression="^(.*)$">
<action application="speak" data="openmrcp:openmrcp-v2|Susan|Hello World"/>
</condition>
</extension>
</context>
</section>
</document>
I checked that mod_openmrcp.so is compiled ok:
[root@localhost bin]# ls ../mod/mod_openmrcp.so -al
-rwxr-xr-x 1 root root 4981560 Dec 26 19:56 ../mod/mod_openmrcp.so
[root@localhost bin]#
Here is what I have in the openmrcp xml config:
[root@localhost freeswitch]# cat conf/mrcp_profiles/openmrcp-v2.xml
<include>
<profile name="openmrcp-v2" description="OpenMRCPv2 Server">
<param name="proto_version" value="2"/>
<param name="client_ip" value="127.0.0.1"/>
<param name="client_port" value="8062"/>
<param name="server_ip" value="192.168.1.109"/>
<param name="server_port" value="5060"/>
<param name="rtp_port_min" value="11000"/>
<param name="rtp_port_max" value="12000"/>
</profile>
</include>
Could someone help me out? I would greatly appreciate any help.
Thanks,
Mark
_______________________________________________
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
|
|
|
Back to top |
|
|
|
|
|
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
|