Why doesn't my code work on the Raspberry Pi?

Hello,

I'm currently programming a voice assistant and everything worked great on my Windows PC, but when I loaded the program onto the Pi and started the program, this error message appeared:

Traceback (most recent call last):

File "/home/grafjulian08/PycharmProjects/voiceAssistant/main.py", line 1164, in <module>

execute()

File "/home/grafjulian08/PycharmProjects/voiceAssistant/main.py", line 658, in execute

if detect_wake_word(): # If the wake word was detected

^^^^^^^^^^^^^^^^^

File "/home/grafjulian08/PycharmProjects/voiceAssistant/main.py", line 139, in detect_wake_word

recognizer.adjust_for_ambient_noise(source) # Adjust background noise

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "/home/grafjulian08/PycharmProjects/voiceAssistant/.venv/lib/python3.11/site-packages/speech_recognition/__init__.py", line 389, in adjust_for_ambient_noise

assert source.stream is not None, "Audio source must be entered before adjusting, see documentation for “AudioSource“; are you using “source“ outside of a “with“ statement?"

^^^^^^^^^^^^^^^^^^^^^^^^^

AssertionError: Audio source must be entered before adjusting, see documentation for “AudioSource“; are you using “source“ outside of a “with“ statement?

I have a good microphone on my Pi that works, and I've already tweaked the code a lot, but it won't go away. What else could be causing this?

If you want me to show parts of my code, you can say so.

Kind regards

(2 votes)
Loading...

Similar Posts

Subscribe
Notify of
4 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Bizarrus
1 year ago

The problem is that you are:

  • On Piece have installed another Python version than on your PC
  • On your Piece the Depencies have not installed (forgot with “pip”?):

https://packaging.python.org/en/latest/tutorials/managing-dependencies/

  • You forgot to activate the microphone or even install the drivers, apparently the microphone is not recognized.

Do you use a graphical surface at the Pi or do you do anything about Shell?

You should look beforehand in the OS whether the microphone is actually detected and, if necessary, check with a simple audio recorder whether it can actually be recorded. A solid “connect” of an external device (in the case the microphone) is often not enough, you have to install/configure it beforehand.

Please also show the code section where you initially select the microphone.

Traveller5712
1 year ago

Do you realize that you better contact a PI user forum? 😉

But I’m typing that the EInstellations to address the audio interface on which Sinnlos PC is completely different than on PI.

On the PI you usually use ALSA… is that set up and working?