
Preview videos from the cache
Hi,
Is it possible to not show a preview in the form of a picture, and to preview loaded automatically from the cache, 1 or 3 seconds for example. For example as implemented in the player DLE CMS.
Is it possible? how to implement it?
Now I have the code:
<div id="myElement">Loading the player...</div>
<script>
var playerInstance = jwplayer("myElement");
playerInstance.setup({
sources: [{
file: "[xfvalue_video-720]",
label: "720p",
type: "video/mp4",
"default": "true"
},{
file: "[xfvalue_video-480]",
label: "480p",
type: "video/mp4"
},{
file: "[xfvalue_video-360]",
label: "360p",
type: "video/mp4"
}],
skin: {
name: "glow",
active: "#FF6F28",
inactive: "white",
},
width: "640",
height: "360"
});
</script>
Thanks for the answer.