From 93c5194756e501bede25c9c9f67c40e1a114e5ae Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Mon, 15 Jun 2026 08:05:11 -0500 Subject: scrypted: rewrite single-flight drop log — firmware isn't the ceiling anymore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scrypted/scrypted-viewport.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scrypted') 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; } -- cgit v1.2.3