3

我正在尝试获取呼叫者的数字键和记录文件。录音文件也会有哔声(dtmf)。

现在,我只能记录提示 + 键入,但不能在 voice.php 中输入“w”文本字符串。

在示例 voice.xml 文件中,如果我删除“字段标记”,那么它会正常工作,因为它将 wav 文件保存到服务器中。

有谁知道将记录文件和文本输入一起提交是否可行?如果可行,如何修改 vxml 文件?应该使用什么类型的enctype?

如果使用 Nexmo 不可行,是否有其他服务提供商可以支持用户构建这样的场景?

voice.xml 代码

<?xml version="1.0" encoding="UTF-8"?>
<vxml version = "2.1">
    <form id="top">
        <property name="inputmodes" value="dtmf"/>
        <property name="interdigittimeout" value="2s"/>
        <property name="timeout" value="4s"/>
        <record name="message" beep="true" maxtime="60s" dtmfterm="true">
                <field name="w" type="digits?maxlength=6">
                    <prompt bargein="true">
                      Please enter 6 digit number.
                    </prompt>
                </field>
        </record>
        <block>
            <submit next="./voice.php" enctype="multipart/form-data" method="post"/>
        </block>
    </form>
</vxml>    

voice.php 代码

<?php

if(!isset($_FILES['message'])){
    $mfile = fopen("./log/request.log", "a") or die("unable to open file!");
    fwrite($mfile, date('m/d/Y h:i:s a', time())." POST:".print_r($_POST, true)."\n");
    fwrite($mfile, date('m/d/Y h:i:s a', time())." GET:".print_r($_GET, true)."\n");
    fclose($mfile);
    return;
}

switch($_FILES['message']['error']){
    case UPLOAD_ERR_OK:
        move_uploaded_file($_FILES['message']['tmp_name'], './log/' . $_FILES['message']['name']);
        $mfile = fopen("./log/request.log", "a") or die("unable to open file!");
        fwrite($mfile, date('m/d/Y h:i:s a', time())." POST:".print_r($_POST, true)."\n");
        fwrite($mfile, date('m/d/Y h:i:s a', time())." GET:".print_r($_GET, true)."\n");
        fclose($mfile);
        $prompt = 'Thanks.';
        break;
    default:
        $prompt = 'Sorry, we could not save your message.';
}
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<vxml version="2.1">
    <form>
        <block>
            <prompt><?php echo $prompt ?></prompt>
        </block>
    </form>
</vxml>
4

1 回答 1

1

VoiceXML 不允许同时进行识别和录音。输入将是一个或另一个。您可以执行录音并对录音进行一些音频分析,尽管它可能会变得混乱(您需要进行过滤/信号分析以及一些去抖逻辑,以防止混乱的音频认为单音按下是多个)。

某些平台允许独立于 VoiceXML 的通话录音。但是,大多数用于语音调整和诊断。因此,它们并非设计为在通话期间访问。

于 2016-07-18T14:31:55.177 回答