not gonna fix it but okay

This commit is contained in:
legop3
2025-11-29 22:17:49 -05:00
parent a343c5d1e2
commit e6e6327165
3 changed files with 6 additions and 4 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -11,7 +11,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Multi Roomba Rover" /> <meta name="apple-mobile-web-app-title" content="Multi Roomba Rover" />
<title>Multi Roomba Rover</title> <title>Multi Roomba Rover</title>
<script type="module" crossorigin src="/assets/index-DPNmbtZ-.js"></script> <script type="module" crossorigin src="/assets/index-DcIs3Dc0.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BxUpjkzh.css"> <link rel="stylesheet" crossorigin href="/assets/index-BxUpjkzh.css">
</head> </head>
<body> <body>
+4 -2
View File
@@ -47,8 +47,10 @@ export class WhepPlayer {
if (!this.video) return; if (!this.video) return;
this.video.playsInline = true; this.video.playsInline = true;
this.video.autoplay = true; this.video.autoplay = true;
this.video.muted = true; this.video.muted = this.audioOnly ? false : true;
this.video.disableRemotePlayback = true; if (typeof this.video.disableRemotePlayback !== 'undefined') {
this.video.disableRemotePlayback = true;
}
if ('latencyHint' in HTMLMediaElement.prototype) { if ('latencyHint' in HTMLMediaElement.prototype) {
this.video.latencyHint = 'interactive'; this.video.latencyHint = 'interactive';
} }