Skip to content

Commit

Permalink
fixup! Adagio: Add documentation for video player implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
soupape34 committed Oct 18, 2023
1 parent 2964ef2 commit 9ca5a5e
Showing 1 changed file with 4 additions and 35 deletions.
39 changes: 4 additions & 35 deletions dev-docs/bidders/adagio.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,41 +76,6 @@ pbjs.bidderSettings = {
<i>*These parameters will have its accentuated characters converted to their non-accentuated version:&nbsp;`é`&nbsp;=>&nbsp;`e`</i>


Check failure on line 78 in dev-docs/bidders/adagio.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Multiple consecutive blank lines

dev-docs/bidders/adagio.md:78 MD012/no-multiple-blanks Multiple consecutive blank lines [Expected: 1; Actual: 2] https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md012.md

#### 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 |
Expand All @@ -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

View workflow job for this annotation

GitHub Actions / run markdownlint

Files should end with a single newline character

dev-docs/bidders/adagio.md:96:185 MD047/single-trailing-newline Files should end with a single newline character https://github.com/DavidAnson/markdownlint/blob/v0.29.0/doc/md047.md

0 comments on commit 9ca5a5e

Please sign in to comment.