diff --git a/plugins/core/package-lock.json b/plugins/core/package-lock.json index 84df8c298..661c9c4e2 100644 --- a/plugins/core/package-lock.json +++ b/plugins/core/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/core", - "version": "0.0.256", + "version": "0.0.257", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@scrypted/core", - "version": "0.0.256", + "version": "0.0.257", "license": "Apache-2.0", "dependencies": { "@scrypted/common": "file:../../common", @@ -87,7 +87,7 @@ }, "../../sdk": { "name": "@scrypted/sdk", - "version": "0.0.196", + "version": "0.0.198", "license": "ISC", "dependencies": { "@babel/preset-typescript": "^7.16.7", diff --git a/plugins/core/package.json b/plugins/core/package.json index c3d131958..2b2bc575c 100644 --- a/plugins/core/package.json +++ b/plugins/core/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/core", - "version": "0.0.256", + "version": "0.0.257", "description": "Scrypted Core plugin. Provides the UI, websocket, and engine.io APIs.", "author": "Scrypted", "license": "Apache-2.0", diff --git a/plugins/core/ui/src/interfaces/CameraViewer.vue b/plugins/core/ui/src/interfaces/CameraViewer.vue index cb0312b4a..e2375f5fa 100644 --- a/plugins/core/ui/src/interfaces/CameraViewer.vue +++ b/plugins/core/ui/src/interfaces/CameraViewer.vue @@ -102,7 +102,7 @@ >Live - + fa fa-microphone-slash @@ -145,6 +145,9 @@ export default { }; }, computed: { + hasIntercom() { + return this.device.interfaces.includes(ScryptedInterface.Intercom) || this.device.providedInterfaces.includes(ScryptedInterface.RTCSignalingChannel); + }, isLive() { return !this.startTime; }, diff --git a/plugins/homekit/README.md b/plugins/homekit/README.md index f4e6db0a9..dcfdd3968 100644 --- a/plugins/homekit/README.md +++ b/plugins/homekit/README.md @@ -41,6 +41,7 @@ This is always a issue with the network setup. * Ensure you are not connected to a VPN. * You may have multiple network interfaces, such as wired and wireless, and HomeKit is preferring the wireless interface. Use the HomeKit Plugin's `Scrypted Server Address` setting, and set it to your wired IP address manually. * If your camera/server/iOS are on a separate VLANs, try disabling VLANs to determine if that is the issue. + * You wifi network is saturated, resulting in heavy packet loss. Enabling Transcode Debug Mode in the HomeKit settings for that camera may fix this for testing purposes, but long term usage is not recommended as it reduces quality and increases CPU load. This is probably a codec issue. Try enabling Transcoding on both Live and Remote streams.