我尝试使用 Microsoft Translator Speech API。我正在使用c ++ websocketpp
,我确认已将音频数据发送到服务器,但等待两分钟,连接关闭,因为没有从客户端收到长时间的音频。
void on_open(websocketpp::connection_hdl hdl) {
m_open = std::chrono::high_resolution_clock::now();
std::ifstream f("./HelloWorld.wav");
std::string str((std::istreambuf_iterator<char>(f)),std::istreambuf_iterator<char>())
m_endpoint.send(hdl,str,websocketpp::frame::opcode::BINARY);
}
为什么?
谁能帮帮我?
谢谢你和问候。
发送数据:
等两分钟:
答案 0 :(得分:0)