remove video from displayMedia request

This commit is contained in:
jeffvli
2026-04-05 07:58:01 -07:00
parent a01b4e664d
commit ef129e4638
@@ -70,7 +70,7 @@ export function useVisualizerSystemAudio() {
try {
const stream = await navigator.mediaDevices.getDisplayMedia({
audio: true,
video: true,
video: false,
});
const audioTracks = stream.getAudioTracks();