Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #47907
| From | dieter <dieter@handshake.de> |
|---|---|
| Subject | Re: Any speech to text conversation python library for Linux and mac box |
| Date | 2013-06-13 08:35 +0200 |
| References | <CAAr0NR_jVE4S=GCD5xLL04mr8QwVZK7+MEWsWk3giRUo1F3oSw@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3166.1371105340.3114.python-list@python.org> (permalink) |
Ranjith Kumar <ranjithtenz@gmail.com> writes: > I'm looking for speech to text conversation python library for linux and > mac box, I found few libraries but non of them supports any of these > platform. > I found following libraries speech, dragonfly and pyspeech supports only > windows and sphinx for linux. You will not do the speech analysis directly in Python - you always will do that in an external library. Thus, your first (not Python related) task is to find such a library available for the platforms you are concerned about. Then you find out how this library can be used by applications. Should the library provide a C level interface, then it is not too difficult to use "Cython" to realize a Python bridge for it. Should the library provide a process based interface, then you can use Python's "subprocess" module.
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Any speech to text conversation python library for Linux and mac box dieter <dieter@handshake.de> - 2013-06-13 08:35 +0200
csiph-web