我想将Kaltura独立HTML5播放器与VAST / VPAID广告支持模块一起使用,但我很茫然。我对Kaltura架构一点都不熟悉,并且认为我在Kaltura支持文档和社区论坛中发现了很多细节和讨论,我没有运气好。 (例如:http://www.kaltura.org/ad-support-integration)
我在本地环境中设置了HTML5播放器(kaltura-html5player-widget.1.6a_0.zip)(在Linux上运行Apache和PHP),我从GitHub下载了AdSupport模块({{3} }),但无法弄清楚如何加载AdSupport模块以便在播放器中使用。
这是我到目前为止所做的,但没有任何内容正在加载:
<head>
<title>Simple Video Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- Include jQuery -->
<script type="text/javascript" src="../jquery-1.6.4.min.js" ></script>
<!-- Include the css and javascript -->
<style type="text/css">
@import url("../skins/jquery.ui.themes/kaltura-dark/jquery-ui-1.7.2.css");
</style>
<style type="text/css">
@import url("../mwEmbed-player-static.css");
</style>
<script type="text/javascript" src="../mwEmbed-player-static.js" ></script>
<script>
mw.load("modules/AdSupport/resources/mw.AdLoader.js",function(){
mw.AdLoader.load( 'http://path/to/vast/ad.xml', function( adConf ){
// Now you can call addAdToPlayerTimeline with the adConf
mw.addAdToPlayerTimeline( embedPlayer, ['preroll', 'bumper','overlay', 'postroll'], adConf );
});
});
</script>
</head>
<body>
<h3>Simple video sample</h3>
<video id="vid1" width="480" height="300"
poster="http://www.iana.org/_img/2013.1/icann-logo.svg"
durationHint="33"
>
<source src="http://path/to/video.mp4" type="video/h264" />
</video>
</body>
答案 0 :(得分:2)
kaltura播放器支持VAST / VPAID开箱即用javascript [html5]&amp;闪。 为了使用它,请从我们的主存储库获取最新信息:https://github.com/kaltura/mwEmbed
为了使用没有kaltura后端的kaltura播放器,我们开发了一个代理层,使您能够决定从哪里获取视频元数据和来源。这个图层仍处于开发/ qa状态,但如果你想体验它:https://github.com/kaltura/mwEmbed/tree/proxyPlayer
所有玩家详情+ API都在player.kaltura.com网站上。
我们在KMC(管理控制台)中也有一个不错的工作室,您可以在其中配置播放器并根据自己的需要进行配置。
如果需要更多详细信息,请与我们联系。
感谢,
答案 1 :(得分:0)
可能不是您正在寻找的答案,但如果没有Kaltura后端,这似乎是不可能的: http://forum.kaltura.org/t/running-kaltura-standalone-player-with-vpaid-support/837
我正在追逐同样的人,试图找到支持VPAID的HTML5 / Flash独立播放器。