When I tried streaming audio, it didn't show up in the frontend.
The button is greyed out and I can't hear anything.
I had to manually enable the stream sound with this snippet:
const video = document.querySelector("video");
video.muted = false;
video.volume = 1;
await video.play();
Is this a known issue?
When I tried streaming audio, it didn't show up in the frontend.
The button is greyed out and I can't hear anything.
I had to manually enable the stream sound with this snippet:
Is this a known issue?