PyAudioWPatch icon indicating copy to clipboard operation
PyAudioWPatch copied to clipboard

Is there any way to use SpeechRecognition with wasapi loopback?

Open ghost opened this issue 1 year ago • 4 comments

What problem are you facing?

  • [ ] audio isn`t recorded
  • [ ] audio is recorded with artifacts
  • [ ] problem with "silence"
  • [ x] other

What is the cause of the error (in your opinion)?

  • [ ] PyAudio\PortAudio bug
  • [ x] I just need help(or answer)

Before creating, complete the checklist:

If the problem is related to the inability to record sound from speakers, then before creating this issue, try to first record audio using the provided examples (for example, simple_recording_app.py)

Start your issue here 👇

Is there any way to use SpeechRecognition with wasapi? like this ` import pyaudiowpatch as pyaudio import speech_recognition as sr

p = pyaudio.Pyaudio() recognizer = sr.Recognizer()

default_speakers = p.get_default_wasapi_loopback()

rate = int(default_speakers["defaultSampleRate"]) channels = default_speakers["maxInputChannels"] print(f"Recording from: ({default_speakers['index']}) {rate} {channels} {default_speakers['name']}")

stream = p.open( format=data_format, channels=channels, rate=rate, frames_per_buffer=1024, input=True, input_device_index=default_speakers["index"], )

recognizer.listen_in_background(stream.read(4096)) # i tried but doesnt work

` any help would be appreciated!

ghost avatar Aug 11 '24 01:08 ghost

(in real time)

ghost avatar Aug 11 '24 02:08 ghost

Hi🖐 Its depends on SpeechRecognition. If it can do STT in real-time, then you can do it. In turn, PyAudio can do what you need, but maybe you will need to increase the frames_per_buffer size, or do manual buffering

s0d3s avatar Sep 23 '24 04:09 s0d3s

Could you provide me for the code as an example ? Much appreciated!

ghost avatar Sep 26 '24 11:09 ghost

@imposterfromtheamongus You can use this project as reference: https://github.com/SevaSk/ecoute/ https://github.com/SevaSk/ecoute/blob/main/AudioRecorder.py

There inside custom version of SpeachRecognition but only reason for it - is to switch from PyAudio to WPatch-version. I think here exists option to use only custom Microphone class(not whole SpeachRecognition), which will be overriden with WPatch. But you have to work it out on your own. Good luck!

s0d3s avatar Sep 27 '24 19:09 s0d3s