Possible to link an image in a playlist to a URL, with Flowplayer?

Posted by Yegor on Stack Overflow See other posts from Stack Overflow or by Yegor
Published on 2010-03-23T05:09:37Z Indexed on 2010/03/23 5:11 UTC
Read the original article Hit count: 309

Filed under:

I have a simple Flowplayer playlist. First one plays a short clip, which then cuts off, and an image is displayed. Is there a way to make the image clickable?

here is what I have:

<a  style="display:block;width:640px;height:360px" id="player"> </a>
<script>
    flowplayer("player", "../flowplayer-3.1.5.swf", { 
    playlist: [ 
        {url: 'http://e1h13.simplecdn.net/flowplayer/flowplayer.flv', duration: 10},
        {url: 'http://www.domain.com/image.jpg', duration: 100000}, 
    ], 
        plugins:  { 
        controls: null
    }           
    });
</script>

If there is another way of doing this, Im all ears. I need a video to play for 10 seconds (or entirely, since the file is gonna be 10 seconds long), and then display some text + a URL.

© Stack Overflow or respective owner

Related posts about flowplayer