* replace tool to use `ffmpeg` and bump v0.0.8 * format code * wip * wip: update components * wip: remove websocket for cameras since they are not supported * wip: allow changing between different login methods It will prefer logging in with `Tuya (Smart Life) App` if there was no previous `userId`. Else, it will fall back to `Tuya Developer Account`. * wip: fetch rtsp from Tuya Sharing SDK * wip * feat: add support for light accessory in camera * fix: resolve indicator not updating * wip: prevent setting motion if device has no motion detection * improve mqtt reconnect, also update status * bump version * update commit * bump to beta 3 * quick fix * changelog * fixchangelog * bump version * fix: resolve mqtt connection issues * chore: bump version * fix: use correct property for checking connection state * chore: update changelog * chore: bump version * fix: ensure timeout is actually correct and bound corretly * chore: update changelog * bump version * fix: fix setTimeout undefined function * chore: update changelog * fix: fix issue with camera not found --------- Co-authored-by: ErrorErrorError <16653389+ErrorErrorError@users.noreply.github.com> Co-authored-by: Erik Bautista Santibanez <erikbautista15@gmail.com>
Scrypted
Scrypted is a high performance home video integration platform and NVR with smart detections. Instant, low latency, streaming to HomeKit, Google Home, and Alexa. Supports most cameras. Learn more.
Installation and Documentation
Installation and camera onboarding instructions can be found in the docs.
Community
Scrypted has active communities on Discord, Reddit, and Github. Check them out if you have questions!
Development
Debug Scrypted Plugins in VS Code
# this is an example for homekit.
# check out the code
git clone https://github.com/koush/scrypted
cd scrypted
# get the dependencies for the server and various plugins
./npm-install.sh
# open the homekit project in VS Code
code plugins/homekit
You can now launch (using the Start Debugging play button) the HomeKit Plugin in VS Code. Please be aware that you do not need to restart the Scrypted Server if you make changes to a plugin. Edit the plugin, launch, and the updated plugin will deploy on the running server.
If you do not want to set up VS Code, you can also run build and install the plugin directly from the command line:
# currently in the plugins/homekit directory.
npm run build && npm run scrypted-deploy 127.0.0.1
Plugin SDK Documentation
Want to write your own plugin? Full documentation is available here: https://developer.scrypted.app
Debug the Scrypted Server in VS Code
Debugging the server should not be necessary, as the server only provides the hosting and RPC mechanism for plugins. The following is for reference purpose. Most development can be done by debugging the relevant plugin.
# check out the code
git clone https://github.com/koush/scrypted
cd scrypted
# get the dependencies for the server and various plugins
./npm-install.sh
# open server project in VS Code
code server
You can now launch the Scrypted Server in VS Code.