gpt4 book ai didi

xml - VoiceXML 和 TwiML/PlivoXML 之间有什么区别?

转载 作者:数据小太阳 更新时间:2023-10-29 02:49:47 25 4
gpt4 key购买 nike

我的任务是研究这两种实现之间的差异,以便更好地理解两者在开发难度和功能集方面的差异,但我没有发现两者之间有任何清晰简洁的比较。

最佳答案

我认为您是在询问 VoiceXML、TwiML 和 PlivoXML 等事物之间的区别。 Tropo 和 Nexmo 都支持 VoiceXML,因此这是对 XML 格式(和相关平台)的比较,而不是特定供应商的比较。我添加了 PlivoXML,因为它类似于 TiwML,但很独特。免责声明:我为 Nexmo 工作。

这三者都描述了通话过程中发生的事情——机器如何与调用者互动。本质上是用于电话调用的 HTML,允许您向用户呈现信息(播放音频、阅读文本),或从用户那里获取信息(录制音频、识别语音、按数字)。

便携性

VoiceXML 是行业标准,与 HTML 一样,它是 managed by the W3C 。 TwiML 和 PlivoXML 都是专有的。这意味着 VoiceXML 应用程序不依赖于特定的供应商。

输入

这三个都支持录制音频或捕获 DTMF(按键)。 VoiceXML 支持语法,允许您识别语音并调整该识别引擎。 TwiML 和 PlivoXML 没有这种支持。

TwiML 示例(期望 DTMF):

<Response>
<Gather action="process.php">
<Say>Press a few digits.</Say>
</Gather>
</Response>

VoiceXML 示例(期望 DTMF 或识别):

<vxml version = "2.1">
<form>
<field name="department">
<prompt>Press 1 or say sales, press 2 or say support.</prompt>
<grammar xml:lang="en-US" root = "TOPLEVEL" mode="voice" >
<rule id="TOPLEVEL" scope="public">
<one-of>
<item> sales </item>
<item> support </item>
</one-of>
</rule>
</grammar>
<grammar xml:lang="en-US" root = "TOPLEVEL" mode="dtmf" >
<rule id="TOPLEVEL" scope="public">
<one-of>
<item> 1 <tag> out.department="sales"; </tag> </item>
<item> 2 <tag> out.department="support"; </tag> </item>
</one-of>
</rule>
</grammar>
</field>
<block>
<submit next="../php/form.php" method="post"/>
</block>
</form>
</vxml>

输出

这三个都支持文本到语音和播放音频(通过链接引用)。 Plivo 还允许您使用 API 为正在进行的通话播放音频,但这不在 PlivoXML 的上下文中。

TwiML 示例:

<Response>
<Say>Hello From TwiML</Say>
</Response>

VoiceXML 示例:

<vxml version="2.1">
<form>
<block>
<prompt>Hello from VXML!</prompt>
</block>
</form>
</vxml>

变量和状态

TwiML 和 PlivoXML 允许您像浏览器一样跟踪某些 session ;然而,VoiceXML 有一个更有用的状态概念,允许您在多个请求之间共享变量。

TwiML 或 PlivoXML 文档一次只能真正收集一件事 从用户那里获取数字或记录实际上类似于具有单个元素的表单发布。

VoiceXML 形式不限于单个输入,并且包含已识别语音、DTMF 按下、录音的多个字段。 VoiceXML 还允许在同一文档中向用户播放/读回该数据,因为它只是一个变量。事实上,单个 VoiceXML 文档可以有多种形式,用户可以在这些形式之间导航。

VoiceXML 示例:

<form id="welcome">
<field name="customer_type">
<prompt>Say 'new' or press 1 if you're a new customer, press 2 or say 'existing' if you have an account.</prompt>
<grammar xml:lang="en-US" root = "TOPLEVEL" mode="voice" >
...
</grammar>
<grammar xml:lang="en-US" root = "TOPLEVEL" mode="dtmf" >
...
</grammar>
</field>
<filled>
<prompt cond="customer_type=='new'">
Thanks for contacting us.
</prompt>
<prompt cond="customer_type=='existing'">
Thanks for being a loyal customer.
</prompt>
<goto expr="'#' + customer_type" />
</filled>
</form>

session 和队列

TwiML 和 PlivoXML 支持在 XML 文档中添加对 session 的调用。 TwiML 还支持直接来自 TwiML 的队列概念(并向其添加调用)(PlivoXML 没有该队列支持)。 VoiceXML 在 VXML 文档中没有 session 或排队的概念(但是,API 可以提供一种外部机制来将多个事件调用一起 session )。

_TwiML 示例:

<Response>
<Dial>
<Conference>Room 1234</Conference>
</Dial>
</Response>

转移

这三者都支持为正在进行的通话添加第二条线路。 VoiceXML 允许您使用传输的输出来指导文档的其余部分。

TwiML 示例:

<Response>
<Dial timeout="10" record="true">415-123-4567</Dial>
</Response>

VoiceXML 示例:

<vxml version = "2.1">
<form>
<transfer name="result" dest="tel:+14158058810" bridge="true">
<prompt>Please wait while we transfer you.</prompt>
<grammar xml:lang="en-US" root = "TOPLEVEL" mode="voice">
<rule id="TOPLEVEL" scope="public">
<one-of>
<item> disconnect </item>
</one-of>
</rule>
</grammar>
</transfer>
<filled>
<if cond="result == 'busy'">
<prompt>Sorry, they're busy.</prompt>
<elseif cond="result == 'noanswer'" />
<prompt>Sorry, they didn't answer.</prompt>
<else />
<prompt>You spoke for <value expr="result$.duration" /> seconds.</prompt>
</if>

<if cond="result$.inputmode == 'voice'">
You ended the call by saying, <value expr="result$.utterance" />.
</if>
</filled>
<block>
Thanks for using the transfer element.
</block>
</form>
</vxml>

可扩展性:这三个都允许调用遵循链接到另一个 VoiceXML/TwiML/PlivoXML 文档的一些概念。然而,VoiceXML 有子对话的概念,其中控制被转移到另一个 VoiceXML 应用程序,返回值被传递回调用应用程序。这可以允许与(或开发)通用外部服务集成。

VoiceXML 示例:

<form id="billing_adjustment">
<var name="account_number"/>
<var name="home_phone"/>
<subdialog name="accountinfo" src="acct_info.vxml#basic">
<filled>
<!-- Note the variable defined by "accountinfo" is
returned as an ECMAScript object and it contains two
properties defined by the variables specified in the
"return" element of the subdialog. -->

<assign name="account_number" expr="accountinfo.acctnum"/>
<assign name="home_phone" expr="accountinfo.acctphone"/>
</filled>
</subdialog>
....
</form>

示例基于/复制自 Twilio's DocsNexmo's VXML QuickstartsW3C's VXML Documentation

关于xml - VoiceXML 和 TwiML/PlivoXML 之间有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28801353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com