IMA SDK สามารถใช้เพื่อสร้างรายได้จากสตรีมแบบสดและวิดีโอออนดีมานด์ สำหรับสตรีมแบบสด คุณต้องส่งคำขอโฆษณาใหม่สำหรับช่วงพักโฆษณาแต่ละครั้ง ทยอยส่งคำขอเหล่านี้เพื่อให้แน่ใจว่าผู้ชมทุกคนของคุณจะไม่ขอ โฆษณาพร้อมๆ กันและทำลายเซิร์ฟเวอร์โฆษณา
IMA SDK มี AdsRequest.liveStreamPrefetchSeconds
เพื่อช่วยในเรื่องนี้
คุณสมบัตินี้ระบุจำนวนวินาทีสูงสุดที่ SDK
ควรรอจนกว่าจะติดต่อเซิร์ฟเวอร์โฆษณาหลังจากที่คุณเรียก
AdsLoader.requestAds()
เวลาของคำขอจริงจะเป็นแบบสุ่ม สำหรับ
ตัวอย่างเช่น หากคุณตั้งค่า AdsRequest.liveStreamPrefetchSeconds
เป็น 30 SDK
จะรอ 0 ถึง 30 วินาทีหลังจากโทรหา AdsLoader.requestAds()
เพื่อ
ส่งคำขอไปยังเซิร์ฟเวอร์
การดึงข้อมูลล่วงหน้าของสตรีมแบบสดในทางปฏิบัติ
เราขอแนะนำให้ดึงข้อมูลช่วงพักโฆษณาถัดไปล่วงหน้าทันทีที่ช่วงพักโฆษณาสิ้นสุดลง วิธีนี้ช่วยให้มั่นใจได้ว่าระยะเวลาสูงสุดที่ใช้ได้สำหรับกรอบเวลาการดึงล่วงหน้า สมมติว่าคุณมีช่วงพักโฆษณาแต่ละช่วงเป็นเวลา 5 นาที เมื่อช่วงพักโฆษณาสิ้นสุดลง คุณสามารถขอช่วงพักโฆษณาครั้งถัดไป โดยใช้กรอบเวลา ในการดึงโฆษณาล่วงหน้า 290 วินาที (5 นาที - 10 วินาที เพื่อให้แน่ใจว่าคำขอที่ส่งไปในตอนท้ายของ กรอบเวลาการดึงข้อมูลล่วงหน้ามีเวลาเพียงพอในการแก้ปัญหา)
Objective-C
- (void)adsManager:(IMAAdsManager *)adsManager didReceiveAdEvent:(IMAAdEvent *)event {
...
switch (event.type) {
...
case kIMAAdEvent_ALL_ADS_COMPLETED:
IMAAdsRequest *request = [[IMAAdsRequest alloc]
initWithAdTagUrl: self.adTagUrl
adDisplayContainer: self.adDisplayContainer
avPlayerVideoDisplay: self.avPlayerVideoDisplay
pictureInPictureProxy: self.pictureInPictureProxy
userContext: nil];
// set a delay between the end of the last ad
// in the last request, and the first ad from
// the new request
Float64 adGap = 30;
// make sure the request occurs at least five
// seconds before starting the new set of ads
request.liveStreamPrefetchSeconds = adGap - 5;
[self.adsLoader requestAdsWithRequest:request];
// start new ads after adGap seconds have elapsed
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, adGap * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
[adsManager start];
});
break;
...
}
...
}
Swift
func adsManager(_ adsManager: IMAAdsManager!, didReceive event: IMAAdEvent!) {
switch event.type {
...
case IMAAdEventType.ALL_ADS_COMPLETED:
let request = IMAAdsRequest(
adTagUrl: AdTagUrl,
adDisplayContainer: adDisplayContainer,
contentPlayhead: contentPlayhead,
userContext: nil)
// set a delay between the end of the last ad
// in the last request, and the first ad from
// the new request
let adGap = 30
// make sure the request occurs at least five
// seconds before starting the new set of ads
request.liveStreamPrefetchSeconds = adGap - 5
adsLoader.requestAds(with: request)
// start new ads after adGap seconds have elapsed
DispatchQueue.main.asyncAfter(deadline: .now() + adGap) {
adsManager.start()
}
break
...
}
}