Merge branch 'main' of github.com:koush/scrypted

This commit is contained in:
Koushik Dutta
2022-05-31 15:40:45 -07:00
4 changed files with 9 additions and 5 deletions

View File

@@ -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",

View File

@@ -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",

View File

@@ -102,7 +102,7 @@
>Live</v-btn
>
<v-btn small v-if="isLive" @click="toggleMute" color="white" outlined>
<v-btn small v-if="isLive && hasIntercom" @click="toggleMute" color="white" outlined>
<v-icon v-if="muted" small color="white" :outlined="isLive"
>fa fa-microphone-slash
</v-icon>
@@ -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;
},

View File

@@ -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.