homebridge-nest-accfactory 0.2.3 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to `homebridge-nest-accfactory` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ## v0.2.4a (2024/12/10)
6
+
7
+ - Fix for camera video stream when audio disabled
8
+
5
9
  ## v0.2.3 (2024/12/06)
6
10
 
7
11
  - General code cleanup and bug fixes
package/dist/camera.js CHANGED
@@ -414,7 +414,7 @@ export default class NestCamera extends HomeKitDevice {
414
414
  );
415
415
  let ffmpegRecording = child_process.spawn(this.deviceData.ffmpeg.binary, commandLine.join(' ').split(' '), {
416
416
  env: process.env,
417
- stdio: ['pipe', 'pipe', 'pipe', includeAudio === true ? 'pipe' : ''],
417
+ stdio: ['pipe', 'pipe', 'pipe', 'pipe'],
418
418
  });
419
419
 
420
420
  // Process FFmpeg output and parse out the fMP4 stream it's generating for HomeKit Secure Video.
@@ -806,7 +806,7 @@ export default class NestCamera extends HomeKitDevice {
806
806
  );
807
807
  let ffmpegStreaming = child_process.spawn(this.deviceData.ffmpeg.binary, commandLine.join(' ').split(' '), {
808
808
  env: process.env,
809
- stdio: ['pipe', 'pipe', 'pipe', includeAudio === true ? 'pipe' : ''],
809
+ stdio: ['pipe', 'pipe', 'pipe', 'pipe'],
810
810
  });
811
811
 
812
812
  ffmpegStreaming.on('exit', (code, signal) => {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "homebridge-nest-accfactory",
3
3
  "displayName": "Nest Accfactory",
4
4
  "type": "module",
5
- "version": "0.2.3",
5
+ "version": "0.2.5",
6
6
  "description": "Homebridge support for Nest/Google devices including HomeKit Secure Video (HKSV) support for doorbells and cameras",
7
7
  "author": "n0rt0nthec4t",
8
8
  "license": "Apache-2.0",
@@ -52,9 +52,9 @@
52
52
  },
53
53
  "devDependencies": {
54
54
  "@eslint/js": "^9.16.0",
55
- "@stylistic/eslint-plugin": "^2.11.0",
55
+ "@stylistic/eslint-plugin": "^2.12.0",
56
56
  "@types/node": "^22.10.1",
57
- "@typescript-eslint/parser": "^8.17.0",
57
+ "@typescript-eslint/parser": "^8.18.0",
58
58
  "homebridge": "^2.0.0-beta.0",
59
59
  "copyfiles": "^2.4.1",
60
60
  "eslint": "^9.16.0",