最新的Google Chromecast API具有本机广告功能,它支持VAST和VMAP格式,但是我们发现,如果XML清单文件的类型为“ aplication *”,则广告无法正常工作,而chomecast广告功能会忽略此功能。 Google cast issue有这个想法吗? 好的,替代解决方案是使用IMA sdk代替标准的CAF广告功能。但是我无法开始播放广告,总是有错误。 我使用了以下代码示例:google ima sdk example 媒体加载后,我添加了15秒钟的超时时间,然后加载了广告,如下所示:
playerManager.setMessageInterceptor(
cast.framework.messages.MessageType.LOAD, loadRequestData => {
Utils.initIMA();
setTimeout(()=>{
playerManager.stop();
Utils.requestAd('https://pubads.g.doubleclick.net/gampad/ads?sz=640x480&iu=/124319096/external/single_ad_samples&ciu_szs=300x250&impl=s&gdfp_req=1&env=vp&output=vast&unviewed_position_start=1&cust_params=deployment%3Ddevsite%26sample_ct%3Dlinear&correlator=12345678');
}, 15000);
return loadRequestData;
});
var Utils = {
requestAd: (adTagUrl) => {
let adsRequest = new google.ima.AdsRequest();
adsRequest.adTagUrl = adTagUrl;
adsRequest.linearAdSlotWidth = mediaElement.width;
adsRequest.linearAdSlotHeight = mediaElement.height;
adsRequest.nonLinearAdSlotWidth = mediaElement.width;
adsRequest.nonLinearAdSlotHeight = mediaElement.height / 3;
adsLoader.requestAds(adsRequest);
},
initIMA : () => {
let adDisplayContainer = new google.ima.AdDisplayContainer(document.getElementById('adContainer'), mediaElement);
adDisplayContainer.initialize();
adsLoader = new google.ima.AdsLoader(adDisplayContainer);
adsLoader.getSettings().setPlayerType('cast/client-side');
adsLoader.addEventListener(
google.ima.AdsManagerLoadedEvent.Type.ADS_MANAGER_LOADED,
Utils.onAdsManagerLoaded, false);
adsLoader.addEventListener(
google.ima.AdErrorEvent.Type.AD_ERROR, Utils.onAdError, false);
adsLoader.addEventListener(
google.ima.AdEvent.Type.ALL_ADS_COMPLETED, Utils.onAllAdsCompleted, false);
}
}
此行再现错误:adsLoader.requestAds(adsRequest); 未捕获的TypeError:a.g.canPlayType不是函数