# 科大讯飞的语音听说读写的cordova插件 ## 安装方法 APP_KEY参数值为您在科大讯飞申请的appid 运行cordova plugin add https://gitee.com/shuto/cordova-plugin-IFlyspeech-master.git#wd --variable APP_KEY=${APP_KEY} --variable IOS_APP_KEY=${APP_KEY} ## 调用方法 /** 开始录音 最大持续时间40秒 * @Param 成功callback * @Param 失败callback * @Param 是否显示录音画面 * @Param 是否显示标点 * */ xunfeiListenSpeaking.startListen(success, error, isShowDialog, isShowPunc); // 停止录音 xunfeiListenSpeaking.stopListen(); /** * 开始说话 * @Param 成功callback * @Param 失败callback * @Param 需要说出的信息 */ xunfeiListenSpeaking.startSpeak(success, error, message); // 停止说话 xunfeiListenSpeaking.stopSpeak(); // 暂停说话 xunfeiListenSpeaking.pauseSpeaking(); // 恢复说话 xunfeiListenSpeaking.resumeSpeaking();