mirror of
https://github.com/koush/scrypted.git
synced 2026-02-14 02:42:06 +00:00
* parse endpoint and ffmpeg args * aiortc logging, detect ffmpeg input source format * log intercom source * bump * write sdp to file * bump * stop loop correctly * run ffmpeg to convert inputs to known format * options don't seem to do anything * bump * refactoring to use webrtc for video * pass through ffmpeg to clean up stream for PyAV * relay talkback audio * cachebust * mute talkback with silence * cleanly exit orphaned subprocesses * rename class * bump minor version * fetch webrtc stream from prebuffer * prebuffer still not working * Revert "prebuffer still not working" This reverts commitb30ccebb17. * Revert "fetch webrtc stream from prebuffer" This reverts commit8dbd308c59. * try to fix buffer overrun * expose option to purge pip cache and reinstall deps * some more logging * use v1 pypi * bump 0.5.2 * per-camera settings to toggle webrtc implementation * change setting name * wire up existing push to talk for Intercom * documentation * bump 0.5.3 * 0.5.4 with new python dependency versioning * bump av build * 0.5.5 * optimize event waiting by reducing polling * more minor optimizations * tweak performance and requirements.txt * reimplement with pion webrtc * bump 0.6.0 * fix interfaces for doorbells
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "@scrypted/arlo",
|
|
"version": "0.6.1",
|
|
"description": "Arlo Plugin for Scrypted",
|
|
"keywords": [
|
|
"scrypted",
|
|
"plugin",
|
|
"arlo",
|
|
"camera"
|
|
],
|
|
"scripts": {
|
|
"scrypted-setup-project": "scrypted-setup-project",
|
|
"prescrypted-setup-project": "scrypted-package-json",
|
|
"build": "scrypted-webpack",
|
|
"prepublishOnly": "NODE_ENV=production scrypted-webpack",
|
|
"prescrypted-vscode-launch": "scrypted-webpack",
|
|
"scrypted-vscode-launch": "scrypted-deploy-debug",
|
|
"scrypted-deploy-debug": "scrypted-deploy-debug",
|
|
"scrypted-debug": "scrypted-debug",
|
|
"scrypted-deploy": "scrypted-deploy",
|
|
"scrypted-readme": "scrypted-readme",
|
|
"scrypted-package-json": "scrypted-package-json"
|
|
},
|
|
"scrypted": {
|
|
"name": "Arlo Camera Plugin",
|
|
"runtime": "python",
|
|
"type": "DeviceProvider",
|
|
"interfaces": [
|
|
"Settings",
|
|
"DeviceProvider",
|
|
"DeviceDiscovery"
|
|
],
|
|
"pluginDependencies": [
|
|
"@scrypted/snapshot",
|
|
"@scrypted/prebuffer-mixin"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@scrypted/sdk": "file:../../sdk"
|
|
}
|
|
}
|