Reputation: 15072
I am attempting to write my first Alexa skill. After much research, I have built a skill that plays a musical note.
When I test the skill, I get the following error message:
Error: There was a problem when trying to retrieve the audio from https://s3.amazonaws.com/music-notes/A-sharp.mp3
I can access the file just fine in my browser and I believe I have enabled CORS. Can someone point me to the cause of this error?
Upvotes: 0
Views: 323
Reputation: 15072
The problem was that the docs it had stated to use 16,000 Hz at 48 kbps, but when I did that on audacity, I left the bit rate mode at average. Changing this to constant fixed the problem. Thanks to: https://www.youtube.com/watch?v=pKlnpf0SsoE for telling me this.
Upvotes: 2
Reputation: 1259
I would assume that this is a SSL issue, but I haven't investigated it.
If it is, this link might help:
How to Configure SSL for Amazon S3 bucket
Upvotes: 0