Skip to content

Commit 6dad03a

Browse files
committed
fix: remove muted
1 parent a484226 commit 6dad03a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ui/src/components/room.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function MediaStreamPlayer({ stream }: MediaStreamPlayerProps) {
2525
ref={videoRef}
2626
autoPlay
2727
playsInline
28-
muted
28+
// muted
2929
className="w-full h-full"
3030
/>
3131
);
@@ -52,7 +52,7 @@ function Stage({ connected, onStreamReady }: StageProps) {
5252
className="w-full h-full object-cover"
5353
autoPlay
5454
loop
55-
muted
55+
// muted
5656
playsInline
5757
>
5858
<source src="/loading.mp4" type="video/mp4" />

ui/src/components/webcam.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function StreamCanvas({
6969
if (!stream) return;
7070
if (!videoRef.current) {
7171
videoRef.current = document.createElement("video");
72-
videoRef.current.muted = true;
72+
// videoRef.current.muted = true;
7373
}
7474

7575
const video = videoRef.current;

0 commit comments

Comments
 (0)