Jplayer playlist and track images
Design and Skin Customization
The Jplayer has a provision for a poster in the script.Even the JR5 players show this:
{if is_array($media)}
{foreach $media as $a}
{if $a._item.$ext == 'mp3'}
{
title: "{$a.title|htmlentities}",
artist: "{$a.artist}",
mp3: "{$jamroom_url}/{$a.module_url}/stream/{$params.field}/{$a.item_id}/key=1/file.mp3",
poster: "{$jamroom_url}/{$a.module_url}/image/audio_image/{$a.item_id}/large"
},
{/if}
{/foreach}
{/if}
I wonder why it does not function like their demo does.