Ketchup |
09-24-2013 07:11 PM |
trying to replace flowplayer with video.js player in tubeace script
hi I have tubeace running in my members area as a video manager , it uses flowplayer but it keeps buffering for no obvious reason.
How can I use video.js player code in tubeace or any other html5 player? Please don't say ask the tubeace guy because he is no help , he knows his use of flow player is having problems and said to use another player ( video.js ) but doesn't want to say what code to put.
The tubeace flow player code is
Code:
<script type="text/javascript" src="{home_url}/libs/flowplayer/flowplayer-3.2.10.min.js"></script>
<div style="width:640px;height:360px;" id="player"></div>
<script language="JavaScript">
flowplayer("player", "{home_url}/libs/flowplayer/flowplayer-3.2.11.swf", {
plugins: {
{adplugins}
},
clip: {
autoPlay: false,
autoBuffering: true,
url: "{video_file}",
{adclip}
playlist: [
{preroll}
{midroll}
{postroll}
]
}
});
</script>
|