-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathtranscribe.py
101 lines (81 loc) · 3.68 KB
/
transcribe.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
'''
================================================
## VOICEBOOK REPOSITORY ##
================================================
repository name: voicebook
repository version: 1.0
repository link: https://github.com/jim-schwoebel/voicebook
author: Jim Schwoebel
author contact: [email protected]
description: a book and repo to get you started programming voice applications in Python - 10 chapters and 200+ scripts.
license category: opensource
license: Apache 2.0 license
organization name: NeuroLex Laboratories, Inc.
location: Seattle, WA
website: https://neurolex.ai
release date: 2018-09-28
This code (voicebook) is hereby released under a Apache 2.0 license license.
For more information, check out the license terms below.
================================================
## LICENSE TERMS ##
================================================
Copyright 2018 NeuroLex Laboratories, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
## SERVICE STATEMENT ##
================================================
If you are using the code written for a larger project, we are
happy to consult with you and help you with deployment. Our team
has >10 world experts in Kafka distributed architectures, microservices
built on top of Node.js / Python / Docker, and applying machine learning to
model speech and text data.
We have helped a wide variety of enterprises - small businesses,
researchers, enterprises, and/or independent developers.
If you would like to work with us let us know @ [email protected].
================================================
## TRANSCRIBE.PY ##
================================================
Transcribes speech through different vendors:
Google speech and/or a custom engine.
'''
import os
import speech_recognition as sr_audio
from nala.data.models import ps_transcribe as pst
def transcribe_audio(filename,hostdir,transcript_type):
# transcribe the audio according to transcript type
# google or sphinx (custom model)
#try:
if transcript_type == 'sphinx':
transcript=pst.transcribe(hostdir,filename)
print('pocket: '+transcript)
elif transcript_type == 'google':
try:
# try google if you can, otherwise use sphinx
r=sr_audio.Recognizer()
with sr_audio.AudioFile(filename) as source:
audio = r.record(source)
transcript=r.recognize_google_cloud(audio)
print('google: '+transcript)
except:
print('error using google transcription, need to put API key in environment vars')
print('defaulting to pocketsphinx...')
r=sr_audio.Recognizer()
with sr_audio.AudioFile(filename) as source:
audio = r.record(source)
transcript=r.recognize_sphinx(audio)
print('sphinx (failed google): '+transcript)
else:
# default to sphinx if not sphinx or google inputs
transcript=pst.transcribe(hostdir,filename)
print('pocket: '+transcript)
#except:
#transcript=''
return transcript