Created
March 7, 2017 17:46
-
-
Save Stefan-Code/6492b768119a77f1fbeb7dd82862dcb7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
import argparse | |
from ws4py.client.threadedclient import WebSocketClient | |
import time | |
import threading | |
import sys | |
import urllib | |
import Queue | |
import json | |
import time | |
import os | |
import time | |
import pyaudio | |
import wave | |
FORMAT = pyaudio.paInt16 | |
CHANNELS = 1 | |
RATE = 44100 | |
CHUNK = 1024 | |
RECORD_SECONDS = 30 | |
audio = pyaudio.PyAudio() | |
def rate_limited(maxPerSecond): | |
minInterval = 1.0 / float(maxPerSecond) | |
def decorate(func): | |
lastTimeCalled = [0.0] | |
def rate_limited_function(*args,**kargs): | |
elapsed = time.clock() - lastTimeCalled[0] | |
leftToWait = minInterval - elapsed | |
if leftToWait>0: | |
time.sleep(leftToWait) | |
ret = func(*args,**kargs) | |
lastTimeCalled[0] = time.clock() | |
return ret | |
return rate_limited_function | |
return decorate | |
class MyClient(WebSocketClient): | |
def __init__(self, url, protocols=None, extensions=None, heartbeat_freq=None, byterate=32000, | |
save_adaptation_state_filename=None, send_adaptation_state_filename=None): | |
super(MyClient, self).__init__(url, protocols, extensions, heartbeat_freq) | |
self.final_hyps = [] | |
self.byterate = byterate | |
self.final_hyp_queue = Queue.Queue() | |
self.save_adaptation_state_filename = save_adaptation_state_filename | |
self.send_adaptation_state_filename = send_adaptation_state_filename | |
@rate_limited(4) | |
def send_data(self, data): | |
self.send(data, binary=True) | |
def opened(self): | |
#print "Socket opened!" | |
def send_data_to_ws(): | |
# start Recording | |
stream = audio.open(format=FORMAT, channels=CHANNELS, | |
rate=RATE, input=True, | |
frames_per_buffer=CHUNK) | |
print "recording..." | |
frames = [] | |
start = time.time() | |
while not time.time()-start > RECORD_SECONDS: | |
data = stream.read(self.byterate/2) | |
#print 'reading data' | |
self.send_data(data) | |
# stop Recording | |
print >> sys.stderr, "Audio sent, now sending EOS" | |
self.send("EOS") | |
stream.stop_stream() | |
stream.close() | |
audio.terminate() | |
t = threading.Thread(target=send_data_to_ws) | |
t.start() | |
def received_message(self, m): | |
response = json.loads(str(m)) | |
#print >> sys.stderr, "RESPONSE:", response | |
#print >> sys.stderr, "JSON was:", m | |
if response['status'] == 0: | |
if 'result' in response: | |
trans = response['result']['hypotheses'][0]['transcript'] | |
if response['result']['final']: | |
#print >> sys.stderr, trans, | |
self.final_hyps.append(trans) | |
print >> sys.stderr, '\r%s' % trans.replace("\n", "\\n") | |
else: | |
print_trans = trans.replace("\n", "\\n") | |
if len(print_trans) > 80: | |
print_trans = "... %s" % print_trans[-76:] | |
print >> sys.stderr, '\r%s' % print_trans, | |
if 'adaptation_state' in response: | |
if self.save_adaptation_state_filename: | |
print >> sys.stderr, "Saving adaptation state to %s" % self.save_adaptation_state_filename | |
with open(self.save_adaptation_state_filename, "w") as f: | |
f.write(json.dumps(response['adaptation_state'])) | |
else: | |
print >> sys.stderr, "Received error from server (status %d)" % response['status'] | |
if 'message' in response: | |
print >> sys.stderr, "Error message:", response['message'] | |
def get_full_hyp(self, timeout=60): | |
return self.final_hyp_queue.get(timeout) | |
def closed(self, code, reason=None): | |
#print "Websocket closed() called" | |
#print >> sys.stderr | |
self.final_hyp_queue.put(" ".join(self.final_hyps)) | |
def main(): | |
uri = "ws://localhost:8080/client/ws/speech" | |
rate = RATE | |
content_type = "audio/x-raw, layout=(string)interleaved, rate=(int)%d, format=(string)S16LE, channels=(int)1" %(rate) | |
print content_type | |
ws = MyClient(uri + '?%s' % (urllib.urlencode([("content-type", content_type)])), byterate=rate/2) | |
ws.connect() | |
result = ws.get_full_hyp() | |
print result.encode('utf-8') | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment