Hello there, I'm running into a problem with the new Echo Spot device that has been released in Germany yesterday.
I'm having the problem, that the Echoo Spot is not using it's display to show video!
It seems that when checking "this.event.context.System.device.supportedInterfaces.VideoApp" the Echo Spot is not retuning that it has VideoApp OR Display enabled.
Instead the Echo Spot is returning audioPlayerPlay from the following last else {}.
if (this.event.context.System.device.supportedInterfaces.VideoApp && this.event.context.System.device.supportedInterfaces.Display) { // intented for echo show/echo spot // response with template // run video this.response.playVideo(URL, metadata); } else if (this.event.context.System.device.supportedInterfaces.VideoApp) { // intented for future device without display capability // response without template // run video this.response.playVideo(URL, metadata); } else if (this.event.context.System.device.supportedInterfaces.Display) { // intented for future device without videoapp capability // response with template // run audio, as there is no videoapp support this.response.audioPlayerPlay("REPLACE_ALL", URL, "0", null, "0"); } else { // THIS IS WHERE THE ECHO SPOT IS RESPONSING TO // intented for echo audio only // response without template and video as this has to be audio only this.response.audioPlayerPlay("REPLACE_ALL", URL, "0", null, "0"); }
Could you please look into it? Thanks! Daniel