Re: [grpc-io] Re: Issue understanding how to properly stream to Cloud Speech API in C++ with grpc

2018-01-13 Thread nedikov
I had somewhat negative experience with Windows C++ grpc to GoogeSpeach myself. Google Speech c++ set of samples (https://github.com/GoogleCloudPlatform/cpp-docs-samples/tree/master/speech/api) works perfectly well under Ubuntu. But fails under grpc 1.8.0 Windows. Fails in a sense that I

Re: [grpc-io] Re: Issue understanding how to properly stream to Cloud Speech API in C++ with grpc

2017-11-24 Thread Trevor Berninger
Unfortunately not in C++. I ended up writing the GoogleSheech stuff in Python and had Unreal communicate with that instead. That was a while ago now though. I did this while it was all still beta. Might work in c++ now but I'm not sure. On Fri, Nov 24, 2017, 7:18 AM wrote:

[grpc-io] Re: Issue understanding how to properly stream to Cloud Speech API in C++ with grpc

2017-11-24 Thread muzaheed57
were u able to make it work with ue4? On Monday, September 5, 2016 at 9:03:25 AM UTC+2, balad...@gmail.com wrote: > > Hello everyone! > > I've written some code in attempt to stream mic audio input from a > separate thread to Cloud Speech API in C++ but I keep getting TCP errors. > I believe

[grpc-io] Re: Issue understanding how to properly stream to Cloud Speech API in C++ with grpc

2016-09-16 Thread baladashman
I finally got around to getting openssl working in Unreal and happy. So now I am using grpc::GoogleDefaultCredentials() and talking over 443. Now I get error 13 (internal) "Failed to create security connector." when I have the HandleReadAppend call uncommented and error 14 (unavailable) with

[grpc-io] Re: Issue understanding how to properly stream to Cloud Speech API in C++ with grpc

2016-09-09 Thread baladashman
When I remove :443 from the url I get the same thing. I haven't taken the time to try and compile openssl for Windows 64bit using MD as the runtime so that boringssl can work with grpc. But surely I can work without these things if I choose to yes? Like how if I connect to a server in chrome

[grpc-io] Re: Issue understanding how to properly stream to Cloud Speech API in C++ with grpc

2016-09-06 Thread 'Yang Gao' via grpc.io
You are talking to port 443 and using Insecure credentials (clear text). Should you use ssl credentials at least? On Monday, September 5, 2016 at 12:03:25 AM UTC-7, balad...@gmail.com wrote: > > Hello everyone! > > I've written some code in attempt to stream mic audio input from a > separate