I'm developing an Alexa skill that supports exercise training. While people are doing exercise, Alexa plays a background audio.
I'm wondering if it is possible to pause training and resume later. For example, suppose the training last for 60 seconds. When the user says "pause training" in 30 seconds, Alexa will stop playing the audio to wait for the next command. Later when the user says "resume training", Alexa will resume the audio starting from the 30 seconds where it paused. And if the waiting time is too long, say 60 seconds, Alexa will timeout. Currently, I'm simply using this.response.speak(audioName) to play audio.
I was searching through the developer document but couldn't find any relevant solutions. Is it possible at all? Thanks in advance!