使用AdSupport for VAST / VPAID构建Kaltura HTML5视频播放器

我想将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(https://github.com/kaltura/mwEmbed/tree/master/modules/AdSupport)下载了AdSupport模块,但是不能弄清楚如何加载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>

最佳答案 kaltura播放器支持开箱即用的VAST / VPAID javascript [html5]&闪.

为了使用它,请从我们的主存储库获取最新信息:
https://github.com/kaltura/mwEmbed

为了在没有kaltura后端的情况下使用kaltura播放器,我们开发了一个代理层,使您能够决定从哪里获取视频元数据和来源.这一层仍在开发/ qa但是如果你想体验它:https://github.com/kaltura/mwEmbed/tree/proxyPlayer

所有玩家详细信息API都在player.kaltura.com网站上.

我们在KMC(管理控制台)中也有一个漂亮的工作室,您可以在其中配置播放器并根据自己的需要进行配置.

如果需要更多细节,请告诉我.

谢谢,

点赞