Skip to content

Commit

Permalink
Add working outstream with mediaType renderer example (prebid#3871)
Browse files Browse the repository at this point in the history
* Add working outstream with mediaType renderer example

* Expand appnexus renderer example

* Fix html formatting
  • Loading branch information
fowler446 authored and jlaso committed Aug 31, 2023
1 parent 94982b7 commit e360d68
Show file tree
Hide file tree
Showing 4 changed files with 246 additions and 0 deletions.
8 changes: 8 additions & 0 deletions _data/sidebar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1730,6 +1730,14 @@
sectionTitle:
subgroup: 1

- sbSecId: 4
title: 'No Server (Specify Renderer)'
link: /examples/video/outstream/pb-ve-outstream-no-server-specify-renderer.html
isHeader: 0
isSectionHeader: 0
sectionTitle:
subgroup: 1

- sbSecId: 4
title: "Long-Form (Ad Pods)"
link:
Expand Down
91 changes: 91 additions & 0 deletions _includes/video/pb-os-nas-renderer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<!DOCTYPE html>
<html lang="en" class="html--no-js">
<head>
{% include head--common.html %}
<!--production version of prebid.js-->
<script async src="//cdn.jsdelivr.net/npm/prebid.js@latest/dist/not-for-prod/prebid.js"></script>

<!--pbjs and player code -->
<script>
var pbjs = pbjs || {};
pbjs.que = pbjs.que || [];

function callANRenderer(bid, ad) {
const adResponse = {
ad: {
video: {
content: ad,
player_width: 640,
player_height: 480,
}
}
}

bid.renderer.push(() => {
window.ANOutstreamVideo.renderAd({
targetId: bid.adUnitCode,
adResponse,
});
});
}

function render(bid) {
let ad = bid.ad || bid.vastXml;

if (ad) {
callANRenderer(bid, ad)
} else {
if (bid.vastUrl) {
(async () => {
ad = await fetch(resp).then(resp => resp.text());

if (typeof ad === 'string') {
callANRenderer(bid, ad);
} else {
console.log('Invalid VAST');
}
})();
} else {
console.log('Invalid ad');
}
}
}

const adUnits = [{
code: 'video1',
mediaTypes: {
video: {
context: 'outstream',
playerSize: [640, 480],
mimes: ['video/mp4'],
protocols: [1, 2, 3, 4, 5, 6, 7, 8],
playbackmethod: [2],
skip: 1,
renderer: {
render,
url: "https://acdn.adnxs.com/video/outstream/ANOutstreamVideo.js"
},
}
},
bids: [{
bidder: 'appnexus',
params: {
placementId: 13232385
}
}]
}];

pbjs.que.push(function() {
pbjs.addAdUnits(adUnits);
pbjs.requestBids({
timeout: 1000,
bidsBackHandler: function(bids) {
const highestCpmBids = pbjs.getHighestCpmBids('video1');
pbjs.renderAd(document, highestCpmBids[0].adId);
}
});
});
</script>
</head>
<body>
</html>
2 changes: 2 additions & 0 deletions _layouts/video_sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
{% include /video/pb-os-app.html %}
{% elsif page.videoType == "pb-os-nas" %}
{% include /video/pb-os-nas.html %}
{% elsif page.videoType == "pb-os-nas-renderer" %}
{% include /video/pb-os-nas-renderer.html %}
{% elsif page.videoType == "pb-lf-fw" %}
{% include /video/pb-lf-fw.html %}
{% elsif page.videoType == "pb-cp-fp" %}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
---
layout: video_sample
title: Prebid Video | Video Outstream Example with No Ad Server using Specified Renderer
description: An example of an outstream video ad using Prebid.js and no ad server but with a specified renderer.
videoType: pb-os-nas-renderer
isVideo: true
sidebarType: 4
---



<div class="container">
<div class="row">
<div class="vidHeader" style="width:75vw;">
<h1>{{ page.title }}</h1>
<p>{{page.description }}</p>
</div>

<!--video warning-->
<div class="pb-alert pb-alert-important">
<p style="color:#85720f"><b>Important:</b>
This example uses a test version of Prebid.js hosted on our CDN that is not recommended for production use. It includes all available adapters. Production implementations should build from source or customize the build using the Download page to make sure only the necessary bidder adapters are included.</p>
</div>

<div>
<div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>

<div id='video1'>
<p>Prebid Outstream Video Ad</p>
</div>

<div>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</p>
</div>
</div>

<!--header code example-->
<div class="pb-alert pb-alert-warning">
<p style="color:#a94443"><b>Warning:</b>
Do not forget to exchange the placementId in the code examples with your own placementId!</p>
</div>

<h4>Place this code in the page header.</h4>
<div class="pb-code-hl-wrap">
<pre class="pb-code-hl">
<!--put javascript code here-->
&lt;script&gt;
var pbjs = pbjs || {};
pbjs.que = pbjs.que || [];

function callANRenderer(bid, ad) {
const adResponse = {
ad: {
video: {
content: ad,
player_width: 640,
player_height: 480,
}
}
}

bid.renderer.push(() => {
window.ANOutstreamVideo.renderAd({
targetId: bid.adUnitCode,
adResponse,
});
});
}

function render(bid) {
let ad = bid.ad || bid.vastXml;

if (ad) {
callANRenderer(bid, ad)
} else {
if (bid.vastUrl) {
(async () => {
ad = await fetch(resp).then(resp => resp.text());

if (typeof ad === 'string') {
callANRenderer(bid, ad);
} else {
console.log('Invalid VAST');
}
})();
} else {
console.log('Invalid ad');
}
}
}

const adUnits = [{
code: 'video1',
mediaTypes: {
video: {
context: 'outstream',
playerSize: [640, 480],
mimes: ['video/mp4'],
protocols: [1, 2, 3, 4, 5, 6, 7, 8],
playbackmethod: [2],
skip: 1,
renderer: {
render,
url: "https://acdn.adnxs.com/video/outstream/ANOutstreamVideo.js"
},
}
},
bids: [{
bidder: 'appnexus',
params: {
placementId: 13232385
}
}]
}];

pbjs.que.push(function() {
pbjs.addAdUnits(adUnits);
pbjs.requestBids({
timeout: 1000,
bidsBackHandler: function(bids) {
const highestCpmBids = pbjs.getHighestCpmBids('video1');
pbjs.renderAd(document, highestCpmBids[0].adId);
}
});
});
&lt;/script&gt;
</pre>
</div>

<h4>Place this code in the page body.</h4>
<div class="pb-code-hl-wrap">
<!--body code example-->
<pre class="pb-code-hl">
<!--put body html and javascript here-->
&lt;div id='video1'&gt;
&lt;p&gt;Prebid Outstream Video Ad&lt;/p&gt;
&lt;/div&gt;
</pre>
</div>
</div>
</div>

<script type="text/javascript" src="/assets/js/video/pb-code-highlight.js"></script>

0 comments on commit e360d68

Please sign in to comment.