Description
Right now most video configurations are being duplicated across Prebid bidders via bidder params. We'd like to standardizing the various OpenRTB video configuration options (minduration, mime types, api, etc) to all be configured at the media type declaration instead of bidder.
While currently some bidders do read this from the media type, it's not a required standard. We first want to update documentation to standardize how everything should be declared and then work with various bidders and possibly make this required for 4.0.
For example, OpenRTB video parameters would be set here:
mediaTypes: {
video: {
context: 'instream', // or 'outstream'
playerSize: [640, 480],
api: [1],
mimes: ['video/mp4'],
...
}
}
This has all been discussed as part of the Prebid Video task force, but let's get the discussion open!
My current proposal for OpenRTB configuration options to support would be to support:
mimes
minduration
maxduration
protocols
startdelay
placement
skip
skipafter
minbitrate
maxbitrate
delivery
playbackmethod
api
linearity
Anything I'm missing? Let me know before we begin to write this up.