src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-06-15 08:05:11 -0500
committerLuke Hoersten <[email protected]>2026-06-15 08:05:11 -0500
commit93c5194756e501bede25c9c9f67c40e1a114e5ae (patch)
tree04a833632f421198fd8e305abad3c7d95cb4ad2a
parentec8d498ba5040b7ba862211975d2043baa6e5536 (diff)
scrypted: rewrite single-flight drop log — firmware isn't the ceiling anymore
-rw-r--r--scrypted/scrypted-viewport.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/scrypted/scrypted-viewport.ts b/scrypted/scrypted-viewport.ts
index 1c90128..2aa4540 100644
--- a/scrypted/scrypted-viewport.ts
+++ b/scrypted/scrypted-viewport.ts
@@ -642,7 +642,7 @@ class ScryptedViewportProvider extends ScryptedDeviceBase
const now = Date.now();
if (droppedFrames > 0) {
const window = (now - lastLogUs) / 1000;
- this.console.log(`"${v.name}": dropping ~${(droppedFrames / window).toFixed(1)} fps over the last ${window.toFixed(1)}s; firmware decode-paint is the ceiling`);
+ this.console.log(`"${v.name}": dropping ~${(droppedFrames / window).toFixed(1)} fps over the last ${window.toFixed(1)}s (in-flight HTTP POST hadn't returned when ffmpeg emitted the next frame; raise frame_interval_ms slightly to flatten this)`);
droppedFrames = 0;
lastLogUs = now;
}