Re: speech_to_text python command not working

2017-09-18 Thread Paul Moore
With that information, my guess would be that the way the web service reports errors has changed, and the Python library is failing to handle errors nicely for you, but the basic functionality still works. So that's somewhat good news, as you can at least handle anything that *would* work, even if

Re: speech_to_text python command not working

2017-09-18 Thread pizza python
Hi all. I tried the same command with a different, smaller file. This file is a 90-kilobyte ogg file. The other one was a 26-megabyte ogg file. Wtih this smaller file, there was no error. speech_to_text -u myUsername -p myPassword -f html -i audio-file.ogg transcript.html

Re: speech_to_text python command not working

2017-09-18 Thread pizza python
On Mon, Sep 18, 2017 at 1:11 AM, Paul wrote: On 18 September 2017 at 09:03, pizza python wrote: > Your error occurs because what the "external service" has delivered > it not what "speech-to-text" has expected. More precisely, > "speech-to-text" has

Re: speech_to_text python command not working

2017-09-18 Thread Paul Moore
On 18 September 2017 at 09:03, pizza python wrote: > Your error occurs because what the "external service" has delivered > it not what "speech-to-text" has expected. More precisely, > "speech-to-text" has excepted as result a dict with a "results" key -- >

Re: speech_to_text python command not working

2017-09-18 Thread pizza python
Speech to text conversion is not a pure Python solution. It must be based on some kind of "external service". From the details you have provided, it looks like some web service. Yes, you are right. It's based on IBM Watson's web/cloud service. Your error occurs

Re: speech_to_text python command not working

2017-09-18 Thread dieter
"pizza python" writes: >I'm on Linux Mint 18.2 Cinnamon 64-bit. > >I am trying to get IBM Watson BlueMix Speech-To-Text to transcribe my >spoken-word audio files. Because I'm not a coder, I tried to find the >simplest way to use BlueMix Speech-to-Text. And

speech_to_text python command not working

2017-09-17 Thread pizza python
Hello all. I'm on Linux Mint 18.2 Cinnamon 64-bit. I am trying to get IBM Watson BlueMix Speech-To-Text to transcribe my spoken-word audio files. Because I'm not a coder, I tried to find the simplest way to use BlueMix Speech-to-Text. And what I found is