1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- UniMRCP client document -->
- <unimrcpclient xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="../unimrcpclient.xsd"
- version="1.0">
- <settings>
- <!-- SIP MRCPv2 settings -->
- <sip-settings id="LumenVox-SIP-Settings">
- <!-- Server address should be explicitly specified, it defaults to "ip" address set in the properties. -->
- <!-- <server-ip>10.10.0.1</server-ip> -->
- <server-port>5060</server-port>
- <!-- <force-destination>true</force-destination> -->
- </sip-settings>
-
- <!-- RTSP MRCPv1 settings -->
- <rtsp-settings id="LumenVox-RTSP-Settings">
- <!-- Server address should be explicitly specified, it defaults to "ip" address set in the properties. -->
- <!-- <server-ip>10.10.0.1</server-ip> -->
- <server-port>554</server-port>
- <!-- <force-destination>true</force-destination> -->
- <resource-location></resource-location>
- <resource-map>
- <param name="speechrecog" value="recognizer"/>
- </resource-map>
- </rtsp-settings>
- </settings>
-
- <profiles>
- <!-- LumenVox MRCPv2 profile -->
- <mrcpv2-profile id="lv2">
- <sip-uac>SIP-Agent-1</sip-uac>
- <mrcpv2-uac>MRCPv2-Agent-1</mrcpv2-uac>
- <media-engine>Media-Engine-1</media-engine>
- <rtp-factory>RTP-Factory-1</rtp-factory>
- <sip-settings>LumenVox-SIP-Settings</sip-settings>
- <rtp-settings>RTP-Settings-1</rtp-settings>
- </mrcpv2-profile>
-
- <!-- LumenVox MRCPv1 profile -->
- <mrcpv1-profile id="lv1">
- <rtsp-uac>RTSP-Agent-1</rtsp-uac>
- <media-engine>Media-Engine-1</media-engine>
- <rtp-factory>RTP-Factory-1</rtp-factory>
- <rtsp-settings>LumenVox-RTSP-Settings</rtsp-settings>
- <rtp-settings>RTP-Settings-1</rtp-settings>
- </mrcpv1-profile>
- <!-- more profiles might be added here -->
- </profiles>
- </unimrcpclient>
|