Skip to content

Audio transcription

cesine edited this page May 24, 2011 · 23 revisions

Table of Contents

Google Speech Recognition

Google speech recognition stands to be the best quality of all "available" systems. Their Search Langauge Model is based on the billions of google searches. Their free-form Language models are based on transcriptions of Google Voice voicemail messages, YouTube videos (it generates closed captions, and then users can upload corrected versions so that users can have accurate closed captions) among other unconfirmed datasources.

Open Source Clients

  • A YouTube captioning API (if such a thing exists) would have similar functionality to the desired chunking on silence, annotating blocks of audio with text...as subtitles are simply arrays of timespan<->text pairs
  • Cromium hack by Mike Putz results in a general perl+post approach, others made it work for PHP and Java
  • The Sample VoiceRecognition.java uses the Android Speech Package android.speech , more specifically the RecognizerIntent. The example works great and is very clear, you can test it out in the API demos Sample code in the SDK.
    • But, it's only for short speech samples (until user pauses) and it is a Intent->GUI->Record->Result use case. No GUI-free/eyes-free access yet. There are feature requests for it on the Android Google Code issue tracker.
  • The implementation of the RecognizerIntent itself (or other files in android.speech) should provide some exposure to the Google Speech Recognition servers..
  • Android Source on GitHub, contains the core code, not the com.google code, and there doesn't appear to be any speech recognition clients in there

Closed Source Clients

  • Relevant packages that could be tweeked to provide a GUI free solution
    • com.google.android.voicesearch
    • com.google.android.voicesearch.speechservice

Open Source Services

Sphinx

A classic and long-standing project now hosting Google Summer of Code students. CMUSphinx is a speaker-independent large vocabulary continuous speech recognizer released under BSD style license. It is also a collection of open source tools and resources that allows researchers and developers to build speech recognition systems.

Language independent phonetic transcription

  • Our goal is to support a bit of bootstrapping, even for non-standard languages so that experiments on any language provide at least a bit of audio analysis.

Related Requirements

Audio Chunking based on Silence

  • The MARF project has some libraries for audio analysis. Not sure how complete and which goals have been realized yet.
 MARF is an open-source research platform and a collection of voice/sound/speech/text and natural language processing (NLP) algorithms written in Java and arranged into a modular and extensible framework facilitating addition of new algorithms.

Additional References

Clone this wiki locally