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 Star

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 exce

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 -- > but this is missing (

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 becaus

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 what I found >is [1]h

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 [1]https://github.com/r

Re: python command not working

2015-08-17 Thread Paul McGuire
On Friday, August 14, 2015 at 6:13:37 AM UTC-5, sam.h...@gmail.com wrote: > On Wednesday, April 22, 2009 at 8:36:21 AM UTC+1, David Cournapeau wrote: > > On Wed, Apr 22, 2009 at 4:20 PM, 83nini <83n...@gmail.com> wrote: > > > Hi guys, > > > > > > I'm new to python, i downloaded version 2.5, opened

Re: python command not working

2015-08-14 Thread sam . heyman
On Wednesday, April 22, 2009 at 8:36:21 AM UTC+1, David Cournapeau wrote: > On Wed, Apr 22, 2009 at 4:20 PM, 83nini <83n...@gmail.com> wrote: > > Hi guys, > > > > I'm new to python, i downloaded version 2.5, opened windows (vista) > > command line and wrote "python", this should take me to the pyth

Re: python command not working

2009-04-23 Thread 83nini
On 23 Apr, 02:25, Dave Angel wrote: > 83nini wrote: > > Christian, > > at last i made the bat file (python25.bat) that contains the following > > contents: > > > --- > > @C:\Python25\python.exe %* > > --- > > > could you tell me how to call python25 in the batch files? what batch > > files do you

Re: python command not working

2009-04-22 Thread Dave Angel
83nini wrote: Christian, at last i made the bat file (python25.bat) that contains the following contents: --- @C:\Python25\python.exe %* --- could you tell me how to call python25 in the batch files? what batch files do you mean? where do i find them? Your original question was how to get a

Re: python command not working

2009-04-22 Thread Scott David Daniels
83nini wrote: ... at last i made the bat file (python25.bat) that contains the following contents: --- @C:\Python25\python.exe %* --- could you tell me how to call python25 in the batch files? what batch files do you mean? where do i find them? "python25.bat" or "python25.cmd" are acceptable n

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 16:23, 83nini <83n...@gmail.com> wrote: > On 22 Apr, 13:45, David Cournapeau wrote: > > > On Wed, Apr 22, 2009 at 8:43 PM, Christian Heimes wrote: > > > > My way doesn't add the dlls to the search path. It allows you to have > > > multiple python commands at once, too. I have shortcuts

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 13:45, David Cournapeau wrote: > On Wed, Apr 22, 2009 at 8:43 PM, Christian Heimes wrote: > > > My way doesn't add the dlls to the search path. It allows you to have > > multiple python commands at once, too. I have shortcuts for python24, > > python25 and python26 on my Windows box. >

Re: python command not working

2009-04-22 Thread David Cournapeau
On Wed, Apr 22, 2009 at 8:43 PM, Christian Heimes wrote: > > My way doesn't add the dlls to the search path. It allows you to have > multiple python commands at once, too. I have shortcuts for python24, > python25 and python26 on my Windows box. Ah, thanks, that's really useful. I need this too,

Re: python command not working

2009-04-22 Thread Christian Heimes
David Cournapeau schrieb: > On Wed, Apr 22, 2009 at 6:24 PM, Christian Heimes wrote: > >> I highly recommend against adding C:\Python25 to your %PATH%. You can >> get the same effect by adding a simple bat file to C:\Windows\System32 > > I am curious, what's the difference ? > > And does this w

Re: python command not working

2009-04-22 Thread David Cournapeau
On Wed, Apr 22, 2009 at 6:24 PM, Christian Heimes wrote: > > I highly recommend against adding C:\Python25 to your %PATH%. You can > get the same effect by adding a simple bat file to C:\Windows\System32 I am curious, what's the difference ? And does this work if you want to add it to your user

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 12:06, 83nini <83n...@gmail.com> wrote: > On 22 Apr, 11:24, Christian Heimes wrote: > > > > > > > David Cournapeau schrieb: > > > > On Wed, Apr 22, 2009 at 4:20 PM, 83nini <83n...@gmail.com> wrote: > > >> Hi guys, > > > >> I'm new to python, i downloaded version 2.5, opened windows (vis

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 11:24, Christian Heimes wrote: > David Cournapeau schrieb: > > > On Wed, Apr 22, 2009 at 4:20 PM, 83nini <83n...@gmail.com> wrote: > >> Hi guys, > > >> I'm new to python, i downloaded version 2.5, opened windows (vista) > >> command line and wrote "python", this should take me to the py

Re: python command not working

2009-04-22 Thread Christian Heimes
David Cournapeau schrieb: > On Wed, Apr 22, 2009 at 4:20 PM, 83nini <83n...@gmail.com> wrote: >> Hi guys, >> >> I'm new to python, i downloaded version 2.5, opened windows (vista) >> command line and wrote "python", this should take me to the python >> command line, but it did not! i'm getting : py

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 10:31, Tim Golden wrote: > 83nini wrote: > > On 22 Apr, 10:04, David Cournapeau wrote: > >> On Wed, Apr 22, 2009 at 4:44 PM, 83nini <83n...@gmail.com> wrote: > > >>> thanks for the tip, how do i add the path of python into my %PATH%? > >> >From the command line (and from memory, I don'

Re: python command not working

2009-04-22 Thread Tim Golden
83nini wrote: On 22 Apr, 10:04, David Cournapeau wrote: On Wed, Apr 22, 2009 at 4:44 PM, 83nini <83n...@gmail.com> wrote: thanks for the tip, how do i add the path of python into my %PATH%? >From the command line (and from memory, I don't use windows regularly): set PATH=C:\python25;%PATH%

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 10:04, David Cournapeau wrote: > On Wed, Apr 22, 2009 at 4:44 PM, 83nini <83n...@gmail.com> wrote: > > > thanks for the tip, how do i add the path of python into my %PATH%? > >From the command line (and from memory, I don't use windows regularly): > > set PATH=C:\python25;%PATH% > > And

Re: python command not working

2009-04-22 Thread karlos barlos
--- On Wed, 4/22/09, karlos barlos wrote: From: karlos barlos Subject: Re: python command not working To: "Ben Finney" Date: Wednesday, April 22, 2009, 3:05 AM look for envaroment   variables__   in system menu__path_paste the python path in ___- done i recomend you add s

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 09:59, Ben Finney wrote: > 83nini <83n...@gmail.com> writes: > > I'm new to python, i downloaded version 2.5 > > What exactly did you download? Give us the URL to the file if possible. > > > opened windows (vista) command line and wrote "python" > > The Python interpreter and libraries,

Re: python command not working

2009-04-22 Thread David Cournapeau
On Wed, Apr 22, 2009 at 4:44 PM, 83nini <83n...@gmail.com> wrote: > > thanks for the tip, how do i add the path of python into my %PATH%? >From the command line (and from memory, I don't use windows regularly): set PATH=C:\python25;%PATH% And you can set it up permanently in the advanced settin

Re: python command not working

2009-04-22 Thread Ben Finney
83nini <83n...@gmail.com> writes: > I'm new to python, i downloaded version 2.5 What exactly did you download? Give us the URL to the file if possible. > opened windows (vista) command line and wrote "python" The Python interpreter and libraries, like any other application, needs to be installe

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 09:36, David Cournapeau wrote: > On Wed, Apr 22, 2009 at 4:20 PM, 83nini <83n...@gmail.com> wrote: > > Hi guys, > > > I'm new to python, i downloaded version 2.5, opened windows (vista) > > command line and wrote "python", this should take me to the python > > command line, but it did n

Re: python command not working

2009-04-22 Thread David Cournapeau
On Wed, Apr 22, 2009 at 4:20 PM, 83nini <83n...@gmail.com> wrote: > Hi guys, > > I'm new to python, i downloaded version 2.5, opened windows (vista) > command line and wrote "python", this should take me to the python > command line, but it did not! i'm getting : python is not an internal > command

python command not working

2009-04-22 Thread 83nini
Hi guys, I'm new to python, i downloaded version 2.5, opened windows (vista) command line and wrote "python", this should take me to the python command line, but it did not! i'm getting : python is not an internal command, external command, program, or command file. anybody has a clue how do i so