Resume


KWIKplayer can be set to resume videos when the link containing the player has been revisited after previously exiting.

in order to enable this feature, a "resume" key needs to be added to the player's object.

resume is a boolean variable that can be set to either true or false. Setting it to true will enable the resume after exit feature. Else, this feature is disabled. The default variable when no key is set is false.


 <script>
    kwikMotion("player", {
            sources: [      //video sources
                {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"}],
            resume : true   //enabling the resume feature in the player
        });
 </script>