Image


KWIKplayer allows you to use a base image that the player will show before the video plays.

The "image" directive takes a URL string varibale containing the link to the image. the URL can be both a file path and a item's URL.

Below is a basic example of assigning the image directive


 <script>
    ...
    image: "https://your-werbsite.com/path/to/your/image.jpg", //image path 
    // image: "../path/to/your/image.jpg", --file based referencing.
    sources: [                                                 //video srouces.
        {file:"https://clvod.itworkscdn.net/itwvod/smil:itwfcdn/admin/515002-R204MDrB22W6kG8.smil/playlist.m3u8"},
        {file: "https://clvod.itworkscdn.net/itwvod/smil:itwfcdn/admin/515002-R204MDrB22W6kG8.smil/manifest.mpd"},
        {file: "https://clvod.itworkscdn.net/itwvod/smil:itwfcdn/admin/515002-R204MDrB22W6kG8.smil/Manifest"}],
    ...
 </script>