From e35c0f5a64e2d79358a08ccceedf21560bf073cd Mon Sep 17 00:00:00 2001 From: watsonb8 Date: Thu, 10 Dec 2020 13:42:12 -0500 Subject: [PATCH] Temporarily commenting out stderr --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 6e071f4..50b7bc6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -36,7 +36,6 @@ export class Rtsp extends EventEmitter { public start(): void { const argStrings = [ - // `-rtsp_transport tcp`, `-i ${this._connecteionString}`, `-r ${this._options.rate ?? 10}`, this._options.image @@ -56,7 +55,7 @@ export class Rtsp extends EventEmitter { this._childProcess.on("error", this.onError); if (this._childProcess.stderr) { - this._childProcess.stderr.on("data", this.onStdErrorData); + // this._childProcess.stderr.on("data", this.onStdErrorData); } }