esp-ai
Version:
Provide a complete set of AI dialogue solutions for your development board, including but not limited to the IAT+LLM+TTS integration solution for the ESP32 series development board. | 为你的开发板提供全套的AI对话方案,包括但不限于 `ESP32` 系列开发板的 `IAT+LLM+TTS` 集成方案。
56 lines (51 loc) • 2.02 kB
JavaScript
/**
* Copyright (c) 2024 小明IO
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Commercial use of this software requires prior written authorization from the Licensor.
* 请注意:将 ESP-AI 代码用于商业用途需要事先获得许可方的授权。
* 删除与修改版权属于侵权行为,请尊重作者版权,避免产生不必要的纠纷。
*
* @author 小明IO
* @email 1746809408@qq.com
* @github https://github.com/wangzongming/esp-ai
* @websit https://espai.fun
*/
/**
* 客户端音频数据处理
*/
const { iat_info, error } = require("../../utils/log");
// 模拟音频测试压力
// const fs = require('fs');
// const path = require('path');
// const moment = require('moment');
// const writeStream = fs.createWriteStream(path.join(__dirname, `./output_${moment().format("HH_mm_ss")}.mp3`));
// // const writeStream = fs.createWriteStream(path.join(__dirname, './output.pcm'));
// let timer = null;
// let countSize = 0;
function fn({ device_id, data }) {
try {
if (!G_devices.get(device_id)) return;
const {
started, send_pcm, iat_server_connected } = G_devices.get(device_id);
if (started && data && data.length && send_pcm && iat_server_connected) {
// 发送数据
send_pcm(data);
}
} catch (err) {
console.log(err);
error(`[${device_id}] 音频 消息错误: ${err}`)
}
}
module.exports = fn