2 Star 0 Fork 0

李泳沁/会议助理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
wakechat.c 7.08 KB
一键复制 编辑 原始数据 按行查看 历史
李泳沁 提交于 2024-07-04 20:31 . 改为会议助理系统
#include "snowboy/snowboy-detect-c-wrapper.h"
#include <stdlib.h>
#include <stdio.h>
#include "record.h"
#include "stt.h"
#include "config.h"
#include "http.h"
char* app_id = "c9c95f69-b1ee-480c-ad11-13bc97d9f654";
// 创建会话
char* create_conversation(char* authtoken) {
char* url = "https://qianfan.baidubce.com/v2/app/conversation";
// 拼接Authorization字段
char* auth;
asprintf(&auth, "Authorization: Bearer %s", authtoken);
// 添加请求头部字段
struct curl_slist* headers = NULL;
headers = curl_slist_append(headers, "Content-Type: application/json;charset=utf-8");
headers = curl_slist_append(headers, auth);
// 准备请求正文
cJSON* obj = cJSON_CreateObject();
cJSON_AddStringToObject(obj, "app_id", app_id);
// 将JSON对象转换为JSON字符串
char* json = cJSON_Print(obj);
// 发送请求
size_t size = strlen(json);
char* response = http_post(url, headers, json, &size);
cJSON_Delete(obj);
free(json);
free(auth);
curl_slist_free_all(headers);
if (!response) {
return NULL;
}
obj = cJSON_ParseWithLength(response, size);
free(response);
if (!obj) {
fprintf(stderr, "解析 JSON 失败: [%s]\n", cJSON_GetErrorPtr());
return NULL;
}
cJSON* conversation_id = cJSON_GetObjectItem(obj, "conversation_id");
if (!conversation_id) {
fprintf(stderr, "conversation_id 字段不存在\n");
cJSON_Delete(obj);
return NULL;
}
char* retval = strdup(conversation_id->valuestring);
cJSON_Delete(obj);
return retval;
}
// 调用对话API
char* chat(char* authtoken, char* conv_id, char* query) {
char* url = "https://qianfan.baidubce.com/v2/app/conversation/runs";
// 拼接Authorization字段
char* auth;
asprintf(&auth, "Authorization: Bearer %s", authtoken);
// 设置请求头部字段
struct curl_slist* headers = NULL;
headers = curl_slist_append(headers, "Content-Type: application/json;charset=utf-8");
headers = curl_slist_append(headers, auth);
// 准备请求正文
cJSON* obj = cJSON_CreateObject();
cJSON_AddStringToObject(obj, "app_id", app_id);
cJSON_AddStringToObject(obj, "conversation_id", conv_id);
cJSON_AddStringToObject(obj, "query", query);
cJSON_AddBoolToObject(obj, "stream", false);
// 将JSON对象转换为JSON字符串
char* json = cJSON_Print(obj);
// 发送请求
size_t size = strlen(json);
char* response = http_post(url, headers, json, &size);
cJSON_Delete(obj);
free(json);
curl_slist_free_all(headers);
free(auth);
if (!response) {
return NULL;
}
obj = cJSON_ParseWithLength(response, size);
free(response);
if (!obj) {
fprintf(stderr, "解析 JSON 失败: [%s]\n", cJSON_GetErrorPtr());
return NULL;
}
cJSON* answer = cJSON_GetObjectItem(obj, "answer");
if (!answer) {
fprintf(stderr, "answer 字段不存在\n");
puts(cJSON_Print(obj));
cJSON_Delete(obj);
return NULL;
}
char* retval = strdup(answer->valuestring);
cJSON_Delete(obj);
return retval;
}
int main() {
// 读取配置文件中的平台密钥
cJSON* config = read_config("config.json");
if (!config) {
return EXIT_FAILURE;
}
cJSON* authtoken = cJSON_GetObjectItem(config, "authtoken");
if (!authtoken) {
fprintf(stderr, "配置文件错误: 找不到 'authtoken' 字段\n");
cJSON_Delete(config);
return EXIT_FAILURE;
}
// 创建会话
char* conv_id = create_conversation(authtoken->valuestring);
if (!conv_id) {
cJSON_Delete(config);
return EXIT_FAILURE;
}
// 创建snowboy检测器
SnowboyDetect* detector = SnowboyDetectConstructor("common.res", "model.pmdl");
if (!detector) {
cJSON_Delete(config);
return EXIT_FAILURE;
}
// 获取检测器支持的音频数据参数
int bits = SnowboyDetectBitsPerSample(detector);
int channels = SnowboyDetectNumChannels(detector);
int rate = SnowboyDetectSampleRate(detector);
printf("采样深度: %d\n", bits);
printf("声道数量: %d\n", channels);
printf("采样频率: %d\n", rate);
// 打开音频采集设备
snd_pcm_uframes_t period = 999;
snd_pcm_t* capture = record_open("hw:0,0", SND_PCM_FORMAT_S16_LE, channels, rate, &period);
if (!capture) {
SnowboyDetectDestructor(detector);
cJSON_Delete(config);
return EXIT_FAILURE;
}
char* buffer = malloc(snd_pcm_frames_to_bytes(capture, period)); // 分配缓冲区
if (!buffer) {
perror("malloc");
record_close(capture);
SnowboyDetectDestructor(detector);
cJSON_Delete(config);
return EXIT_FAILURE;
}
int recording = 0;
int silence = 0;
FILE* memstream = NULL;
char* audio = NULL;
size_t audio_size = 0;
while (1) {
snd_pcm_sframes_t frames = snd_pcm_readi(capture, buffer, period); // 从PCM设备读取数据
if (frames < 0) {
fprintf(stderr, "Error from read: %s\n", snd_strerror(frames));
snd_pcm_recover(capture, frames, 0);
continue;
}
int status = SnowboyDetectRunDetection(detector, (int16_t*)buffer, snd_pcm_frames_to_bytes(capture, frames) / sizeof(int16_t), 0);
if (status > 0) {
printf("检测到唤醒词,开始录音\n");
recording = 1;
memstream = open_memstream(&audio, &audio_size);
if (!memstream) {
perror("open_memstream");
continue;
}
}
if (recording) {
if (status == -2) {
silence++;
}
if (status == 0) {
silence = 0;
}
if (silence > 32) {
printf("停止录音\n");
recording = 0;
silence = 0;
if (memstream) {
fclose(memstream);
memstream = NULL;
}
if (audio_size) {
// 暂停录音
snd_pcm_drop(capture);
// 识别语音
char* text = speech_to_text(audio, audio_size);
if (text) {
puts(text);
// 调用百度云千帆AppBuilder API进行对话
char* answer = chat(authtoken->valuestring, conv_id, text);
if (answer) {
printf("< %s\n", answer);
free(answer);
}
free(text);
}
// 恢复录音
snd_pcm_prepare(capture);
}
}
if (memstream) {
fwrite(buffer, 1, snd_pcm_frames_to_bytes(capture, frames), memstream);
}
}
}
free(buffer);
record_close(capture);
SnowboyDetectDestructor(detector);
cJSON_Delete(config);
free(conv_id);
return EXIT_SUCCESS;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/li-yongqin2/conference-assistant-system.git
git@gitee.com:li-yongqin2/conference-assistant-system.git
li-yongqin2
conference-assistant-system
会议助理系统
master

搜索帮助