asr / cli.py
maolin.liu
[bugfix]Fix transcribed text not continually.
f62fb80
raw
history blame contribute delete
251 Bytes
from consumer.asr import TranscribeConsumer
def cli():
transcribe_consumer = TranscribeConsumer()
transcribe_consumer.consume_messages(transcribe_consumer.input_queue_name, transcribe_consumer.consume)
if __name__ == '__main__':
cli()