الجلب المسبق للبث المباشر

يمكن استخدام حزمة تطوير البرامج لإعلانات الوسائط التفاعلية لتحقيق الربح من أحداث البث المباشر والفيديوهات عند الطلب. بالنسبة إلى أحداث البث المباشر، عليك تقديم طلب إعلان جديد لكل فاصل إعلاني. نظِّم هذه الطلبات للتأكّد من أنّ كلّ المشاهدين لا يطلبون المساعدة. الإعلانات في الوقت نفسه وعرقلة خادم(خوادم) الإعلانات.

للمساعدة في هذا الأمر، تحتوي حزمة تطوير البرامج لإعلانات الوسائط التفاعلية على 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();
}