i'm working on Alexa skill with audio play list.The audios are placed on same S3 bucket and i'm using URL of that particular location (with cloud-front enabled).
The issue is that some audios take time to start (i.e. 5 seconds), whereas, some start quickly. There's no difference in file size or file location, and same code is being used for all the audios. Although, i guess it's some issue with Alexa audio player.
My code to play audio is as:
this.response.audioPlayerPlay('REPLACE_ALL', url, token, null, offset);
Please note, i'm working in node.js, my end point is a lambda function and i'm using 'alexa-sdk' (node package)
I'm unable to understand the issue. Please help.