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 から AdSupport モジュールをダウンロードしました ( https://github.com /kaltura/mwEmbed/tree/master/modules/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>