so when i was experimenting with streamlit, recording audio using microphone with wav output using this library
import streamlit as st
from st_audiorec import st_audiorec
import librosa
wav_audio_data = st_audiorec()
if wav_audio_data is not None:
y, sr = librosa.load(wav_audio_data, sr=None)
i got an error saying :
LibsndfileError: Error opening b'RIFF,@x0bx00WAVEfmt x10x00x00
....
System error.
i was expecting to do a librosa.load using audio that is recorded from microphone with streamlit as interface.