The knowledgebase is a categorized collection of answers to frequently asked questions (FAQ) and articles. You can read articles in this category or select a subcategory that you are interested in.
To enable video demand via PixFuture, publishers need to properly configure their Prebid ad units for video inventory.
Below is an example of a correct configuration for instream video:
var adUnits = [
{
code: 'video-ad-unit-1',
mediaTypes: {
video: {
context: 'instream',
playerSize: [[640, 320]],
mimes: ['video/mp4'],
protocols: [2, 3, 5, 6],
playbackmethod: [2],
api: [2],
placement: 1
}
},
bids: [
{
bidder: 'pixfuture',
params: {
pix_id: '12345'
}
}
]
}
];
mediaTypes.video object must be properly defined (context, player size, protocols, etc.).pix_id should match the one provided to you (e.g., 12345).Article ID: 79
Category: Publishers