kwakwaversal / python-speech-recognition

Audio transcribing using Python's SpeechRecognition library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python-speech-recognition

Audio transcribing using Python's SpeechRecognition library

Synopsis

docker build . -t speech

docker run -it --rm -v $(pwd):/tmp/speech speech file:///tmp/speech/samples/harvard.wav

docker run -it --rm speech https://www.voiptroubleshooter.com/open_speech/american/OSR_us_000_0010_8k.wav

Description

This is my first attempt to transcribe audio files using SpeechRecognition and guesstimate sentences using auditok.

It's inherently hard to take a full audio recording of varying length, accurately convert it to text in fully formed sentences, and provide meta data on the text such as sentiment or intent. Hopefully this will cover a few of the goals below.

Goals

  • Provide a full audio transcript for an audio file.
  • Make every effort to provide the transcript as sentences, but be aware that this will never be accurate as a sentence will be guesstimated based on silence / short gaps in conversation.
  • Provide sentiment for the transcript.
  • Align sentences up with the time they're uttered in the recording.

Food for thought

  • How accurate are the audio transcripts for different speech to text engines?
    • Should multiple speech-to-text APIs be used before settling on one?
    • Should audio transcripts be post processed and fixed by humans?
    • Should the data from APIs that provide alternate transcriptions be stored so that users can easily fix their transcriptions?

Debugging & testing

# first 30s from an audio file (useful for testing)
ffmpeg -ss 0 -i file.mp3 -t 30 file.wav

# segment audio file into multiple 30s segments (for APIs that cap length)
ffmpeg -i file.wav -f segment -segment_time 30 -c copy parts/out%09d.wav

# serve files in a directory over HTTP
plackup -MPlack::App::Directory -e 'Plack::App::Directory->new(root=>".");' -p 2375

Harvard.wav (from 1965 revised list of phonetically balanced sentences)

Actual text

The stale smell of old beer lingers. It takes heat to bring out the odor. A cold dip restores health and zest. A salt pickle tastes fine with ham. Tacos al pastor are my favourite. A zestful food is the hot-cross bun.

Pocket sphinx

they'll smell of old we're lingers it takes heat to bring out the odor called it restores health and zest case all the colt is fine with him couples all pastore my favorite is as full food is the hot cross mon

Google speech recognition

the stale smell of old beer lingers it takes heat to bring out the odor a cold dip restores health and zest a salt pickle taste fine with ham tacos al Pastore are my favorite a zestful food is be hot cross bun

Google cloud speech

the stale smell of old beer lingers it takes heat to bring out the odor a cold dip restores health and zest a salt pickle taste fine with ham tacos al Pastore are my favorite a zestful food is the hot cross bun

Bing (azure)

Not checked.

Houndify speech

the stale smell of old beer lingers it takes heat to bring out the odor a cold dip restores health and zest a salt pickle taste fine with ham tacos al pastor are my favorite aceste full food is the hot cross bun

IBM speech

Not checked.

References

Issues

About

Audio transcribing using Python's SpeechRecognition library


Languages

Language:Python 70.6%Language:Shell 16.2%Language:Dockerfile 8.4%Language:Makefile 4.8%