Update JW Player Poster Image During Playback

1k Views Asked by At

Is there a way to update the image: during playback? We are using it for live audio and I would like to update the player with the album art.

1

There are 1 best solutions below

1
On

If you're using a live audio stream, then you will need to identify some event on your page in order to fire the function to update the image. Once you identify the event you want to tie it to, you can update the image using the following code.

jwplayer('player').load({
          "image": "newimage.jpg"
      });

Your player needs some way of knowing when the song has changed, how do you plan on identifying that?