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

IMA SDK สามารถใช้เพื่อสร้างรายได้จากสตรีมแบบสดและวิดีโอออนดีมานด์ สำหรับสตรีมแบบสด คุณต้องส่งคำขอโฆษณาใหม่สำหรับช่วงพักโฆษณาแต่ละครั้ง ทยอยส่งคำขอเหล่านี้เพื่อให้แน่ใจว่าผู้ชมทุกคนของคุณจะไม่ขอ โฆษณาพร้อมๆ กันและทำลายเซิร์ฟเวอร์โฆษณา

IMA SDK มี AdsRequest.liveStreamPrefetchSeconds เพื่อช่วยในเรื่องนี้ คุณสมบัตินี้ระบุจำนวนวินาทีสูงสุดที่ SDK ควรรอจนกว่าจะติดต่อเซิร์ฟเวอร์โฆษณาหลังจากที่คุณเรียก AdsLoader.requestAds() เวลาของคำขอจริงจะเป็นแบบสุ่ม สำหรับ ตัวอย่างเช่น หากคุณตั้งค่า AdsRequest.liveStreamPrefetchSeconds เป็น 30 SDK จะรอ 0 ถึง 30 วินาทีหลังจากโทรหา AdsLoader.requestAds() เพื่อ ส่งคำขอไปยังเซิร์ฟเวอร์

การดึงข้อมูลล่วงหน้าของสตรีมแบบสดในทางปฏิบัติ

เราขอแนะนำให้ดึงข้อมูลช่วงพักโฆษณาถัดไปล่วงหน้าทันทีที่ช่วงพักโฆษณาสิ้นสุดลง วิธีนี้ช่วยให้มั่นใจได้ว่าระยะเวลาสูงสุดที่ใช้ได้สำหรับกรอบเวลาการดึงล่วงหน้า สมมติว่าคุณมีช่วงพักโฆษณาแต่ละช่วงเป็นเวลา 5 นาที เมื่อช่วงพักโฆษณาสิ้นสุดลง คุณสามารถขอช่วงพักโฆษณาครั้งถัดไป โดยใช้กรอบเวลา ในการดึงโฆษณาล่วงหน้า 290 วินาที (5 นาที - 10 วินาที เพื่อให้แน่ใจว่าคำขอที่ส่งไปในตอนท้ายของ กรอบเวลาการดึงข้อมูลล่วงหน้ามีเวลาเพียงพอในการแก้ปัญหา)

// 5 minutes == 300 seconds. Include a 10 second buffer
var AD_INTERVAL = 290;

function onAdEvent(adEvent) {
  var ad = adEvent.getAd();
  switch(adEvent.type) {
    case google.ima.AdEvent.Type.ALL_ADS_COMPLETED:
      // Pre-fetch our next ad break.
      requestAds();
      // Play those ads in 5 minutes. In a real-world implementation,
      // this is likely done as the result of a message from your
      // streaming server, not a timeout.
      setTimeout(playAds, AD_INTERVAL * 1000);// Convert to ms.
  }
}

function requestAds() {
  // Destroy the current AdsManager, in case the tag you requested previously
  // contains post-rolls (don't play those now).
  if (adsManager) {
    adsManager.destroy();
  }
  // Your AdsLoader will be set up on page-load. You should re-use the same
  // AdsLoader for every request. For more info on setting up the AdsLoader,
  // see the "Get Started" guide in the prerequisites above.
  if (adsLoader) {
    // Reset the IMA SDK.
    adsLoader.contentComplete();
  }
  var adsRequest = new google.ima.AdsRequest();
  adsRequest.adTagUrl = '...';
  adsRequest.linearAdSlotWidth = <linear_width>;
  adsRequest.linearAdSlotHeight = <linear_height>;
  adsRequest.nonLinearAdSlotWidth = <nonlinear_width>;
  adsRequest.nonLinearAdSlotHeight = <nonlinear_height>;
  adsRequest.liveStreamPrefechSeconds = AD_INTERVAL;
  adsLoader.requestAds(adsRequest);
}

function playAds() {
  adsManager.init(
      <linear_width>,  <linear_height>, google.ima.ViewMode.NORMAL);
  adsManager.start();
}