rebroadcast: publish

This commit is contained in:
Koushik Dutta
2026-02-26 08:42:31 -08:00
parent 6fd84af50f
commit e66ea8e794
4 changed files with 5 additions and 5 deletions

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/prebuffer-mixin",
"version": "0.10.65",
"version": "0.10.66",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/prebuffer-mixin",
"version": "0.10.65",
"version": "0.10.66",
"license": "Apache-2.0",
"dependencies": {
"@scrypted/common": "file:../../common",

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/prebuffer-mixin",
"version": "0.10.65",
"version": "0.10.66",
"description": "Video Stream Rebroadcast, Prebuffer, and Management Plugin for Scrypted.",
"author": "Scrypted",
"license": "Apache-2.0",

View File

@@ -72,7 +72,7 @@ export class FileRtspServer extends RtspServer {
}
}
catch (e) {
this.writeConsole?.error('RTSP WRITE error during truncate file', truncate, e);
this.writeConsole?.warn('RTSP WRITE truncate target removed', truncate, e);
}
}

View File

@@ -426,7 +426,7 @@ export class RtmpClient {
const bytesToAck = (this.totalBytesReceived - this.lastAcknowledgementBytes) >>> 0;
if (bytesToAck >= this.windowAckSize) {
this.lastAcknowledgementBytes = this.totalBytesReceived;
console.log(`Sending acknowledgement: ${this.lastAcknowledgementBytes} bytes received (${bytesToAck} since last ACK)`);
// this.console?.log(`Sending acknowledgement: ${this.lastAcknowledgementBytes} bytes received (${bytesToAck} since last ACK)`);
const data = Buffer.alloc(4);
data.writeUInt32BE(this.lastAcknowledgementBytes, 0);
this.sendMessage(2, 0, RtmpMessageType.ACKNOWLEDGEMENT, 0, data);