My approved skill has been working for 90 days. All of the sudden it is not working as design. When the video finishes it takes 10-15 seconds before resuming to skill's next command. example: Alexa, open Voice Capsule (account required to use) ... I want to talk to Jim Wyatt ... yes (play video) "Hi welcome to Voice Capsule" a video is played and at the end of the video, it appears to freeze. If you wait 10-15 seconds then it resumes as normal. This started ~ a week ago.
My code is based upon this example.
String videoURL = "https://s3.amazonaws.com/mkusters-images/guitar_video.mp4";
String videoTitle = "Sample Video Title";
String videosubTitle = "Sample Video SubTitle";
SpeechletResponse oSpeechletResponse = new ResponseBuilder()
.addVideoDirective(videoURL, videoTitle, videosubTitle)
.build();
oSpeechletResponse.setNullableShouldEndSession(null);
return oSpeechletResponse;
I am using library: alexa-skills-kit-1.8.1-javadoc.jar
Jim