L'SDK IMA può essere utilizzato per monetizzare i live streaming e i video on demand. Per i live streaming, devi effettuare una nuova richiesta di annuncio per ogni interruzione pubblicitaria. Distribuite queste richieste in più scaglioni per evitare che tutti gli spettatori lo facciano contemporaneamente gli annunci e il traffico degli ad server.
Per aiutarti, l'SDK IMA include l'AdsRequest.liveStreamPrefetchSeconds
proprietà. Questa proprietà specifica il numero massimo di secondi in cui l'SDK
devi attendere prima di contattare l'ad server dopo la chiamata
AdsLoader.requestAds()
. L'ora effettiva della richiesta verrà casuale. Per
Ad esempio, se imposti AdsRequest.liveStreamPrefetchSeconds
su 30, l'SDK
attende da 0 a 30 secondi dopo la chiamata a AdsLoader.requestAds()
per
inviare la richiesta al server.
Precaricamento del live streaming in pratica
Ti consigliamo di precaricare la tua prossima interruzione pubblicitaria non appena viene completata. In questo modo ti assicuri che sia disponibile il periodo di tempo massimo per la finestra di precaricamento. Supponiamo che trascorri 5 minuti tra un'interruzione pubblicitaria e l'altra. Quando viene completata un'interruzione pubblicitaria, puoi richiedere la prossima interruzione pubblicitaria con una finestra di precaricamento di 290 secondi (5 minuti meno 10 secondi, per garantire che le richieste inviate alla fine la finestra di precaricamento abbia tempo sufficiente per risolversi):
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
...
}
}