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

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 windows

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 python command

Re: python command not working

2009-04-23 Thread 83nini
On 23 Apr, 02:25, Dave Angel da...@ieee.org 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

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

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,

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 09:36, David Cournapeau courn...@gmail.com 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

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 installed

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 settings

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 09:59, Ben Finney ben+pyt...@benfinney.id.au 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

Re: python command not working

2009-04-22 Thread karlos barlos
--- On Wed, 4/22/09, karlos barlos karlosbar...@yahoo.com wrote: From: karlos barlos karlosbar...@yahoo.com Subject: Re: python command not working To: Ben Finney ben+pyt...@benfinney.id.au Date: Wednesday, April 22, 2009, 3:05 AM look for envaroment   variables__   in system

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 10:04, David Cournapeau courn...@gmail.com 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

Re: python command not working

2009-04-22 Thread Tim Golden
83nini wrote: On 22 Apr, 10:04, David Cournapeau courn...@gmail.com 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

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 10:31, Tim Golden m...@timgolden.me.uk wrote: 83nini wrote: On 22 Apr, 10:04, David Cournapeau courn...@gmail.com 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

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 : python is not an

Re: python command not working

2009-04-22 Thread 83nini
. :) Christian THIS IS REALLY KILLING ME!!! i've been trying everything you adviced me to do, none works!!! all i want to do is to type python in the cmd and get the python command line i want to run a server writing python manage.py runserver that is not working either, of course cos python command

Re: python command not working

2009-04-22 Thread 83nini
manage.py runserver that is not working either, of course cos python command is not working. is this one of the stupid things that vista causes? or what???- Dölj citerad text - - Visa citerad text - Ok, it's not killing me anymore :P I uninstalled python and reinstalled it again, and now it's

Re: python command not working

2009-04-22 Thread David Cournapeau
On Wed, Apr 22, 2009 at 6:24 PM, Christian Heimes li...@cheimes.de 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

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 li...@cheimes.de 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

Re: python command not working

2009-04-22 Thread David Cournapeau
On Wed, Apr 22, 2009 at 8:43 PM, Christian Heimes li...@cheimes.de 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

Re: python command not working

2009-04-22 Thread 83nini
On 22 Apr, 13:45, David Cournapeau courn...@gmail.com wrote: On Wed, Apr 22, 2009 at 8:43 PM, Christian Heimes li...@cheimes.de 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

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 courn...@gmail.com wrote: On Wed, Apr 22, 2009 at 8:43 PM, Christian Heimes li...@cheimes.de wrote: My way doesn't add the dlls to the search path. It allows you to have multiple python commands at once,

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

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