forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! Adagio: Add documentation for video player implementation
- Loading branch information
Showing
1 changed file
with
4 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,41 +76,6 @@ pbjs.bidderSettings = { | |
<i>*These parameters will have its accentuated characters converted to their non-accentuated version: `é` => `e`</i> | ||
|
||
|
||
Check failure on line 78 in dev-docs/bidders/adagio.md GitHub Actions / run markdownlintMultiple consecutive blank lines
|
||
|
||
#### Video outstream configuration | ||
|
||
```js | ||
var adUnits = [ | ||
{ | ||
code: 'article_outstream', | ||
mediaTypes: { | ||
video: { | ||
context: 'outstream', | ||
playerSize: [640, 480], | ||
mimes: ['video/mp4'], | ||
skip: 1 | ||
// Common OpenRTB 2.5 options accross all adunits | ||
// Not supported: 'protocol', 'companionad', 'companiontype', 'ext' | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'adagio', | ||
params: { | ||
placement: 'in_article', | ||
adUnitElementId: 'article_outstream', | ||
video: { | ||
api: [2], // Required - Your video player must support the value 2 | ||
playbackMethod: [6], // Highly recommended | ||
skip: 0 | ||
// OpenRTB 2.5 video options defined here override ones defined in mediaTypes. | ||
// Not supported: 'protocol', 'companionad', 'companiontype', 'ext' | ||
} | ||
} | ||
}] | ||
}, | ||
] | ||
``` | ||
|
||
### Native Custom assets | ||
|
||
| Name | description | | ||
|
@@ -125,3 +90,7 @@ Adagio will use FPD data as fallback for the params below: | |
- category | ||
|
||
If the FPD value is an array, the 1st value of this array will be used. | ||
|
||
### Video outstream | ||
|
||
The AdagioBidAdapter includes a default video player powered by [Blue Billywig](https://www.bluebillywig.com). This default player is used when no renderer is configured for the adUnit. | ||
Check failure on line 96 in dev-docs/bidders/adagio.md GitHub Actions / run markdownlintFiles should end with a single newline character
|