You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to record audio while running recognition from kaldi asr. I have tried the following pipeline in gstreamer (modified from gui-demo.py):
# get audio from mic device
self.pulsesrc.link(self.audioconvert)
self.audioconvert.link(self.tee)
# save to ogg
self.audio_queue.link(self.vorbisenc)
self.vorbisenc.link(self.oggmux)
self.oggmux.link(self.filesink)
# send to asr
self.asr_queue.link(self.audioresample)
self.audioresample.link(self.asr)
self.asr.link(self.fakesink)
# tied up tee and queues
self.tee.link(self.audio_queue)
self.tee.link(self.asr_queue)
But it's not working. No error message but getting 0 kb file and no output from ASR.
Any help?
The text was updated successfully, but these errors were encountered:
I am trying to record audio while running recognition from kaldi asr. I have tried the following pipeline in gstreamer (modified from gui-demo.py):
But it's not working. No error message but getting 0 kb file and no output from ASR.
Any help?
The text was updated successfully, but these errors were encountered: