Hi, thank you for this great integration! It works very well and I truly appreciate it. I was wondering if anyone has tried this integration with Alexa for live streaming, a la "Alexa, show me the back yard"?
I have a couple of cameras connected via the Yi-hack integration and I was able to use HA's stream integration to view the cameras in my FireTV.
From this issue here, it seems that it is necessary to configure the supported_features of the camera:
Alexa.CameraStreamController in Alexa: no longer works in 0.110
The Kuna integration currently reports 0 supported features. For reference, I looked at the code for Yi-Hacks here:
roleoroleo/yi-hack-Allwinner-v2
The code for camera.py declares its supported features:
@property
def supported_features(self) -> int:
"""Return supported features."""
return SUPPORT_STREAM | SUPPORT_ON_OFF
Of course, I'm no expert so I don't know all of the details of making it work. It seems like the code is a lot more involved than just declaring the features.
This would be a great feature to implement if possible. It would certainly beat the crap out of Kuna's Alexa skill, which is basically useless.
Hi, thank you for this great integration! It works very well and I truly appreciate it. I was wondering if anyone has tried this integration with Alexa for live streaming, a la "Alexa, show me the back yard"?
I have a couple of cameras connected via the Yi-hack integration and I was able to use HA's stream integration to view the cameras in my FireTV.
From this issue here, it seems that it is necessary to configure the
supported_featuresof the camera:Alexa.CameraStreamController in Alexa: no longer works in 0.110
The Kuna integration currently reports 0 supported features. For reference, I looked at the code for Yi-Hacks here:
roleoroleo/yi-hack-Allwinner-v2
The code for camera.py declares its supported features:
@propertydef supported_features(self) -> int:"""Return supported features."""return SUPPORT_STREAM | SUPPORT_ON_OFFOf course, I'm no expert so I don't know all of the details of making it work. It seems like the code is a lot more involved than just declaring the features.
This would be a great feature to implement if possible. It would certainly beat the crap out of Kuna's Alexa skill, which is basically useless.