Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #47907 > unrolled thread

Re: Any speech to text conversation python library for Linux and mac box

Started bydieter <dieter@handshake.de>
First post2013-06-13 08:35 +0200
Last post2013-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.


Contents

  Re: Any speech to text conversation python library for Linux and mac box dieter <dieter@handshake.de> - 2013-06-13 08:35 +0200

#47907 — Re: Any speech to text conversation python library for Linux and mac box

Fromdieter <dieter@handshake.de>
Date2013-06-13 08:35 +0200
SubjectRe: 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.

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web