diff --git a/plugins/prebuffer-mixin/package-lock.json b/plugins/prebuffer-mixin/package-lock.json index c7f7ff6f6..ec6a4d1c2 100644 --- a/plugins/prebuffer-mixin/package-lock.json +++ b/plugins/prebuffer-mixin/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/prebuffer-mixin", - "version": "0.1.71", + "version": "0.1.72", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@scrypted/prebuffer-mixin", - "version": "0.1.71", + "version": "0.1.72", "license": "Apache-2.0", "dependencies": { "@scrypted/common": "file:../../common", diff --git a/plugins/prebuffer-mixin/package.json b/plugins/prebuffer-mixin/package.json index 19ba203c5..d3d92c179 100644 --- a/plugins/prebuffer-mixin/package.json +++ b/plugins/prebuffer-mixin/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/prebuffer-mixin", - "version": "0.1.71", + "version": "0.1.72", "description": "Rebroadcast and Prebuffer for VideoCameras.", "author": "Scrypted", "license": "Apache-2.0", diff --git a/plugins/prebuffer-mixin/src/main.ts b/plugins/prebuffer-mixin/src/main.ts index 4a1577ca2..b5d96a856 100644 --- a/plugins/prebuffer-mixin/src/main.ts +++ b/plugins/prebuffer-mixin/src/main.ts @@ -123,7 +123,7 @@ class PrebufferSession { title: 'Detected Resolution and Bitrate', readonly: true, value: `${session?.inputVideoResolution?.[0] || "unknown"} @ ${bitrate || "unknown"} Kb/s`, - description: 'Configuring your camera to 1920x1080 is recommended.', + description: 'Configuring your camera to 1920x1080, 2000Kb/S, Variable Bit Rate, is recommended.', }, { key: 'detectedCodec', @@ -131,13 +131,13 @@ class PrebufferSession { title: 'Detected Video/Audio Codecs', readonly: true, value: (session?.inputVideoCodec?.toString() || 'unknown') + '/' + (session?.inputAudioCodec?.toString() || 'unknown'), - description: 'Configuring your camera to H264 video (2000Kb/s) and AAC/MP3/MP2 audio is recommended.' + description: 'Configuring your camera to H264 video and AAC/MP3/MP2 audio is recommended.' }, { key: 'detectedKeyframe', group, title: 'Detected Keyframe Interval', - description: "Configuring your camera to 4 seconds is recommended (IDR = FPS * 4 seconds).", + description: "Configuring your camera to 4 seconds is recommended (IDR aka Frame Interval = FPS * 4 seconds).", readonly: true, value: ((this.detectedIdrInterval || 0) / 1000).toString() || 'none', },