I'm trying to convert a wave into an audio stream on google colab, but I'm running into the following issue:
import pyaudio
pa = pyaudio.PyAudio()
pa.get_default_output_device_info()
# error
# OSError: No Default Output Device Available
I saw on pip3 install pyaudio on Google Colab that they needed to use some javascript to enable to the microphone, but I'm able to use IPython.display.Audio
to play .wav
files so I'm not sure how to resolve this error