Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #47907 > unrolled thread
| Started by | dieter <dieter@handshake.de> |
|---|---|
| First post | 2013-06-13 08:35 +0200 |
| Last post | 2013-06-13 08:35 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Any speech to text conversation python library for Linux and mac box dieter <dieter@handshake.de> - 2013-06-13 08:35 +0200
| From | dieter <dieter@handshake.de> |
|---|---|
| Date | 2013-06-13 08:35 +0200 |
| Subject | Re: Any speech to text conversation python library for Linux and mac box |
| Message-ID | <mailman.3166.1371105340.3114.python-list@python.org> |
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 top | Article view | comp.lang.python
csiph-web