make iphone live view play in line

Fixes #133
This commit is contained in:
Scott Lamb
2024-08-21 21:52:05 -07:00
parent 140f625a80
commit 04b49f06db
2 changed files with 3 additions and 1 deletions

View File

@@ -475,7 +475,7 @@ const LiveCamera = ({ mediaSourceApi, camera, chooser }: LiveCameraProps) => {
<Alert severity="error">{playbackState.message}</Alert>
</div>
)}
<video ref={videoRef} muted autoPlay />
<video ref={videoRef} muted autoPlay playsInline />
</Box>
);
};