Audio Player does not display Artwork image

amazon-alexa

#1

My skill includes a audio player but it isn’t displaying artwork image

here is my playintent code

PlayIntent() {

    this.$alexaSkill.$audioPlayer
        .setTitle("Chef Recipes")
        .setSubtitle("Paneer Butter Masala")
        .addArtwork('https://chef.s3.amazonaws.com/recipes/Paneer-Butter-Masala.jpg')
        .addBackgroundImage('');
    this.$alexaSkill.$audioPlayer
        .setOffsetInMilliseconds(0)
        .play(song, 'token');
},

what am I doing wrong here?


#2

Hi there, welcome to the Jovo community :wave:

Have you tried png images as well? I once noticed that sometimes jpg doesn’t work.

One more thing: When you try different images, make sure you change the token because Alexa caches the images. When the token is renewed, it loads the image again.


#3

Thank you, It worked.


#4

Great! Closing this then.


closed #5