IMA SDK का इस्तेमाल, लाइव स्ट्रीम के साथ-साथ 'मांग पर वीडियो' से कमाई करने के लिए भी किया जा सकता है. लाइव स्ट्रीम के लिए, आपको विज्ञापन के लिए हर ब्रेक के लिए एक नया विज्ञापन अनुरोध करना होगा. यह पक्का करने के लिए कि आपके सभी दर्शक अनुरोध न कर रहे हों, इन अनुरोधों को एक साथ लगाएं विज्ञापन सर्वर को ट्रैक नहीं करता है.
इसमें मदद करने के लिए, IMA SDK के पास AdsRequest.liveStreamPrefetchSeconds
प्रॉपर्टी. इस प्रॉपर्टी से पता चलता है कि एसडीके ज़्यादा से ज़्यादा कितने सेकंड तक इस्तेमाल कर सकता है
आपके कॉल करने के बाद विज्ञापन सर्वर से संपर्क करने से पहले आपको इंतज़ार करना होगा
AdsLoader.requestAds()
. अनुरोध करने के समय को बिना किसी क्रम के चुना जाएगा. इसके लिए
उदाहरण के लिए, अगर AdsRequest.liveStreamPrefetchSeconds
को 30 पर सेट किया जाता है, तो SDK टूल
AdsLoader.requestAds()
को कॉल करने के बाद, 0 से 30 सेकंड तक इंतज़ार करेगा
सर्वर से अनुरोध करेगा.
लाइव स्ट्रीम प्री-फ़ेच की सुविधा
हमारा सुझाव है कि विज्ञापन के लिए ब्रेक पूरा होते ही, अगला विज्ञापन ब्रेक पहले से फ़ेच करें. इससे यह पक्का होता है कि प्री-फ़ेच विंडो के लिए, ज़्यादा से ज़्यादा समयसीमा उपलब्ध है. मान लीजिए कि विज्ञापन के लिए ब्रेक के बीच का समय 5 मिनट है. विज्ञापन के लिए ब्रेक पूरा होने पर, विज्ञापन के लिए 290 सेकंड की प्री-फ़ेच विंडो के साथ, अगले विज्ञापन के लिए ब्रेक का अनुरोध किया जा सकता है (यह पक्का करने के लिए कि अनुरोध के आखिर में भेजे गए अनुरोध, 5 मिनट में से 10 सेकंड में से छूट जाएं प्री-फ़ेच विंडो में, समाधान करने के लिए काफ़ी समय होता है):
ये कोड स्निपेट बताते हैं कि लाइव स्ट्रीम प्री-फ़ेच को कैसे जोड़ा जा सकता है ऐडवांस सेटिंग का उदाहरण , लेकिन यह तरीका IMA के अन्य तरीकों पर भी लागू हो सकता है.
VideoPlayerController.java
/** Ads logic for handling the IMA SDK integration code and events. */ public class VideoPlayerController { // 5 minutes == 300 seconds. Include a 10 second buffer private float AD_INTERVAL = 290; private double AD_TIMEOUT = 300; ... adsManager.addAdEventListener( new AdEvent.AdEventListener() { /** Responds to AdEvents. */ @Override public void onAdEvent(AdEvent adEvent) { ... case ALL_ADS_COMPLETED: if (adsManager != null) { adsManager.destroy(); adsManager = null; } // When pre-fetching for live streams, be sure to destroy the current AdsManager, // in case the tag you requested previously contains post-rolls // (you don't want to play those now). // Pre-fetch the next ad break. // Play those ads in ~5 minutes. In a real-world implementation, // this will likely be done as the result of a message from your // streaming server, not a via the playAdsAfterThisTime parameter // of requestAndPlayAds(). requestAndPlayAds(AD_TIMEOUT); break; default: break; } } ... public void requestAndPlayAds(double playAdsAfterThisTime) { if (currentAdTagUrl == null || currentAdTagUrl == "") { log("No VAST ad tag URL specified"); resumeContent(); return; } // Since you're switching to a new video, tell the SDK the previous video is finished. if (adsManager != null) { adsManager.destroy(); } playButton.setVisibility(View.GONE); // Create the ads request. AdsRequest request = sdkFactory.createAdsRequest(); request.setAdTagUrl(currentAdTagUrl); request.setContentProgressProvider(videoPlayerWithAdPlayback.getContentProgressProvider()); request.setLiveStreamPrefetchSeconds(AD_INTERVAL); playAdsAfterTime = playAdsAfterThisTime; // Request the ad. After the ad is loaded, onAdsManagerLoaded() will be called. adsLoader.requestAds(request); }