我想使用带有 VAST/VPAID 广告支持模块的 Kaltura 独立 HTML5 播放器,但我不知所措。我对 Kaltura 架构一点也不熟悉,我以为我在 Kaltura 支持文档和社区论坛中找到了很多细节和讨论,但我没有运气让它工作。 (例如: http://www.kaltura.org/ad-support-integration )

我已经在本地环境(在 Linux 上运行 Apache 和 PHP)中设置了 HTML5 播放器 (kaltura-html5player-widget.1.6a_0.zip),并且我已经从 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] 和 flash。
为了使用它,请从我们的主存储库中获取最新版本:https://github.com/kaltura/mwEmbed

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

所有播放器详细信息 + API 都在 player.kaltura.com 网站上。

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

如果需要更多详细信息,请告诉我。

谢谢,

关于html - 使用 AdSupport 为 VAST/VPAID 构建 Kaltura HTML5 视频播放器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24976968/

10-11 12:03