Copyright © 2011 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
Hi guys, i have been trying a little this library, and it works fine. However, i have seen that it needs to connect with whe html5.kaltura.org domain, and i need my application to run without this connection.
Is there any way to make all the process in our own server? Maybe can this be done with the KalturaCE?
Thank you.
Howdy AnovAlberto,
You have a couple options for running the html5 media library on your own server.
1. An MIT licensed static player is available for download, http://www.kaltura.org/project/HTML5_Video_Player Then include it in your web page's head:
<script type="text/javascript" src="kaltura-html5player-widget/jquery-1.4.2.min.js" ></scirpt>
<!-- Include the css and javascript -->
<link rel="stylesheet" href="kaltura-html5player-widget/skins/jquery.ui.themes/jquery-ui-1.7.2.custom.css"></link>
<link rel="stylesheet" href="kaltura-html5player-widget/mwEmbed-player-static.css"></link>
<script type="text/javascript" src="kaltura-html5player-widget/mwEmbed-player-static.js"></script>
2. You can use the full GPL licensed HTML5 Media Library. To do this you will need to download the full media library scripts from http://www.kaltura.org/project/HTML5_Video_Media_JavaScript_Library or use the subversion repository to sync with the stable development version. Once you have the scripts installed on your server you can replace
<script type="text/javascript" src="http://html5.kaltura.org/js" ></script>with a local reference to something like<script type="text/javascript" src="./js/mwEmbed/mwEmbed.js?debug=true" ></script>for debugging and<script type="text/javascript" src="./js/mwEmbed/mwEmbed.js" ></script>for your live site.