Generic Camera Device using local connection (new version now available)

Looks like there is a new method that can be used for storing the images as described here: Removal of Undocumented Device Type Data Storage Option - 1/19/2017

I tried it out on my Panasonic IP cameras and I can retrieve the still images again. In the parse method, simply replace

if (descMap["bucket"] && descMap["key"]) {
	putImageInS3(descMap)
} 

with

if (descMap["key"]) {
	storeTemporaryImage(descMap["key"], getPictureName())
}
2 Likes