การดึงข้อมูลสตรีมแบบสดล่วงหน้า

คุณสามารถใช้ 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

    ...
  }
}