停用前段廣告

要禁用前滾,請更改預設的機會生成器以不進行前滾呼叫。 預設的機會生成器是:

@inheritDoc
*/
override protected function doRetrieveGenerators(item:MediaPlayerItem):Vector.<OpportunityGenerator> {
var result:Vector.<OpportunityGenerator> = new Vector.<OpportunityGenerator>();
result.push(new AdSignalingModeOpportunityGenerator());
result.push(new SpliceOutOpportunityGenerator());
return result;
}

要禁用即時流上的前滾,請更改上述內容,使其僅包括SpliceOutOpportunityGenerator:

@inheritDoc
*/
override protected function doRetrieveGenerators(item:MediaPlayerItem):Vector.<OpportunityGenerator> {
var result:Vector.<OpportunityGenerator> = new Vector.<OpportunityGenerator>();
if (preroll_enabled == true) { result.push(new AdSignalingModeOpportunityGenerator()); }

result.push(new SpliceOutOpportunityGenerator());
return result;
}

本頁內容