Skip to content

Commit

Permalink
Using encrypted traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
kopiro committed Nov 26, 2023
1 parent 82d1758 commit 301df3a
Show file tree
Hide file tree
Showing 11 changed files with 807 additions and 398 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,6 @@ node_modules/
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
.cache

.env
35 changes: 27 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"url": "https://www.paypal.me/kopiro"
},
"dependencies": {
"dotenv": "^16.3.1",
"homebridge-camera-ffmpeg": "^3.1.4",
"node-fetch": "^2.6.7",
"onvif": "^0.6.6"
Expand All @@ -56,7 +57,7 @@
"homebridge": "^1.3.5",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.4.3"
}
}
3 changes: 2 additions & 1 deletion src/cameraAccessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ import { StreamingDelegate } from "homebridge-camera-ffmpeg/dist/streamingDelega
import { Logger } from "homebridge-camera-ffmpeg/dist/logger";
import { TAPOCamera } from "./tapoCamera";
import { PLUGIN_ID } from "./pkg";
import { DeviceInformation } from "onvif";
import { DeviceInformation } from "./types/onvif";
import { CameraPlatform } from "./cameraPlatform";
import { VideoConfig } from "homebridge-camera-ffmpeg/dist/configTypes";

export type CameraConfig = {
name: string;
ipAddress: string;
username: string;
password: string;
streamUser: string;
streamPassword: string;
Expand Down
Loading

0 comments on commit 301df3a

Please sign in to comment.