Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!cs.uu.nl!news.stack.nl!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:text': 0.05; 'kumar': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'sphinx': 0.09; 'thus,': 0.09; 'sfxlen:2': 0.11; 'python': 0.11; 'windows': 0.15; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'subject:library': 0.16; 'subject:python': 0.16; '(not': 0.18; 'library': 0.18; "python's": 0.19; 'platforms': 0.22; 'cc:addr:python.org': 0.22; 'header:User-Agent:1': 0.23; 'non': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'task': 0.26; 'header:X-Complaints-To:1': 0.27; 'external': 0.29; "i'm": 0.30; 'about.': 0.31; 'libraries': 0.31; 'linux.': 0.31; 'writes:': 0.31; 'text': 0.33; 'linux': 0.33; 'mac': 0.33; 'but': 0.35; 'interface,': 0.36; 'library.': 0.36; 'module.': 0.36; 'charset :us-ascii': 0.36; 'should': 0.36; 'too': 0.37; 'level': 0.37; 'to:addr:python-list': 0.38; 'realize': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'first': 0.61; 'received:217': 0.63; 'such': 0.63; 'box,': 0.64; 'provide': 0.64; 'bridge': 0.65; 'analysis': 0.75; 'speech': 0.84; 'speech,': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: dieter Subject: Re: Any speech to text conversation python library for Linux and mac box Date: Thu, 13 Jun 2013 08:35:19 +0200 References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Gmane-NNTP-Posting-Host: pd9e09960.dip0.t-ipconnect.de User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.4.22 (linux) Cancel-Lock: sha1:AeXUCg1dUsXeKC9WKsMldUiodeE= Cc: tutor@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 20 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1371105340 news.xs4all.nl 15930 [2001:888:2000:d::a6]:56236 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:47907 Ranjith Kumar 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.