Hello,
I'm trying to pause a video in an APL document by voice command. It works fine in the simulator and with an Echo Show (1st Gen) device, but not with a FireTV stick (the video just keeps playing).
When the Skill receives an AMAZON.PauseIntent request, it responds with the following JSON:
{ "version": "1.0", "response": { "directives": [ { "type": "Alexa.Presentation.APL.ExecuteCommands", "token": "APL-Video-Token", "commands": [ { "type": "ControlMedia", "command": "pause", "componentId": "VideoPlayer" } ] } ] } }
The APL document:
"items": [ { "type": "Container", "items": [ { "id": "VideoPlayer", "type": "Video", "source": "<URL>", "autoplay": true, "position": "absolute", "width": "100vw", "height": "100vh", "scale": "best-fit", "onEnd": [ { "type": "SendEvent" } ] } ] } ]
Does anyone have a solution for this?