有谁知道如何在新的 Brightcove iOS SDK 的 BCPlayerView / BCVideo / BCPlayerItem 中实现对广告的调用。在哪里可以指定广告服务器?这需要在 Brightcove Studio 中完成吗?
问问题
716 次
1 回答
1
3.0 Brightcove iOS 播放器目前没有内置的广告集成。通过 Brightcove 配置的广告策略目前仅适用于基于 Web 的播放器,因此您必须自己做一些工作才能将该广告配置集成到 iOS 应用程序中。
为此,您需要从广告合作伙伴处获取 iOS 库,并从 Studio 获取广告配置。然后,您可以在希望广告展示的位置设置提示点:
// create a "before" cue point to play a pre-roll advertisement
BCCuePoint *cuePoint = [BCCuePoint
cuePointWithPosition:@"before"
type:@"ad"
properties:@{ @"adId": @"some-ad-configuration" }];
[emitter emit:BCEventSetCuePoint withDetails:@{ @"cuePoint": cuePoint }];
在显示广告之前,您会聆听该提示点:
// Listen for a cue point to trigger an ad
[player.playbackEmitter on:BCEventCuePoint callBlock:^(BCEvent *event) {
// Grab the cue point from the event
BCCuePoint *cuePoint = [event.details objectForKey:@"cuePoint"];
if ([cuePoint.type isEqualToString:@"ad"]) {
[player pause];
// Here's where you would call your native ad library to play an ad
// This code will vary a lot depending on what ad library you're using
[adLibrary playAd:cuePoint.properties[@"adId"]];
}
}];
预构建的 IMA 和 FreeWheel 插件正在开发中,因此值得询问您是否正在使用这些提供商中的任何一个。
于 2012-10-25T18:23:32.557 回答