KraigM/homebridge-nest

Nest Outdoor Cam Video feed not working

Opened this issue · 0 comments

I having an issue with getting my Camera feed working with Nest Cam. No issues with the install and Thermostat is working correctly without an issue. i can see my outside what looks to be a snapshot but live feed does not work.

I installed bot nest plugin for nest and nest-cam and ffmp but I'm stuck on added the config or which one would be the best.

This is working
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

{
"bridge": {
"name": "Homebridge",
"username": "CC:22:3D:E3:CE:30",
"port": 51826,
"pin": "031-45-154"
},

"description": "This is an example configuration file with one fake accessory and one fake platform. You can use this as a template for creating your own configuration file containing devices you actually own.",

"accessories": [

],

"platforms": [
  {
 		"platform": "Nest",

 		"token" : "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",

 		"clientId": "XXXXXXXXXXXXX",
 		"clientSecret": "XXXXXXXXXXXXX",
 		"code": "xxxxxxxxx",

 		"username" : "myusername",
 		"password" : "my password!"
 	}
]

}
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

should I use this >?
{
"platform": "Nest-cam",
"username": "",
"password": "",
"useOMX": false
}

or something like this>?

"platform":"Camera-ffmpeg",
"cameras":[
{
"name":"Front Door",
"videoConfig":{
"source":"-re -f mjpeg -i http://user:password@111.111.111.111/mjpeg.cgi",
"stillImageSource":"-f mjpeg -i http://user:password@111.111.111.111/mjpeg.cgi",
"maxStreams":2,
"maxWidth":640,
"maxHeight":480,
"maxFPS":30
}

++++++++++++++++++++++++++++++++++++++++++++++++++++

what would the correct Syntax be with added one of the below option as I tried added in both in but I cannot get the Syntax correct.

Thanks.