使用ibm-watson服务C#

时间:2015-12-24 03:56:32

标签: c# websocket speech-to-text ibm-watson websocket-sharp

我正在尝试使用ibm-watson服务和websocket-sharp发送语音到文本的音频文件(.wav)。我正在使用示例在asp.net mvc操作中执行此操作。 80kb的wav文件。在学习本教程时speech-to-text/websockets

我正在做以下

                var ws = new WebSocket("wss://stream.watsonplatform.net/speech-to-text/api/v1/recognize?watson-token=" + token);
                ws.OnOpen += ws_OnOpen;
                ws.OnMessage += ws_OnMessage;
                ws.OnClose += ws_OnClose;
                ws.OnError += ws_OnError;

                ws.Connect();

                string startActionjson = "{'action': 'start', 'content-type': 'audio/wav', 'continuous' : true, 'interim_results': true, 'inactivity_timeout': -1,}";
                ws.SendAsync(startActionjson, b =>
                {
                    if (b == true)
                    {
                        //send the audio as binary
                        string filePath = "E:\\Test Folders\\Sample\\test003.wav";
                        byte[] bytes = System.IO.File.ReadAllBytes(filePath);

                        ws.SendAsync(bytes, b1 =>
                        {
                            if(b1)
                                ws.Close();
                        });

                    }
                });

发送启动操作后,我的websocket的readystate保持打开状态,但只要执行发送字节的行,我就会在OnMessage事件中收到以下内容

 {
  "name": "error", 
  "error": "Expecting property name: line 1 column 2 (char 1)"
 }

并且就绪状态更新为“已关闭'。

我也试过发送FileStream,它在chrome和firefox上都是这样做的。对解决方案的任何帮助或指导都将非常值得注意。

由于

1 个答案:

答案 0 :(得分:1)

我找到了解决方案,并且发送正确的json以启动操作时出现问题。我将其更新为以下

 string startActionjson = "{\"action\": \"start\", \"content-type\": \"audio/wav\", \"continuous\" : true, \"interim_results\": true}";

虽然我尝试了json,我在Json Lint的问题中发布了它并且它是有效的。虽然奇怪但仍在工作