Conversation
Merge from origin.
jsnellbaker
left a comment
There was a problem hiding this comment.
Hi @tadam75
While the instream changes look ok (I was able to see the test video play successfully), there are some issues with how the outstream bids are handled.
The following page can provide some additional information on what outstream ads require if needed:
http://prebid.org/dev-docs/show-outstream-video-ads.html#renderers
| } else if (videoMediaType && videoMediaType.context === 'instream') { | ||
| // Specific attributes for instream. | ||
| var playerSize = videoMediaType.playerSize[0]; | ||
| payload.isVideo = true; |
There was a problem hiding this comment.
This variable is causing the returned outstream bid from your adserver to be setup as a banner creative (see line 126 below). The outstream bid should be treated as a video mediaType and ideally have an associated renderer.
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Hi @jsnellbaker When we receive a request for outstream, everything is embedded in the ad-markup that we respond (the player and the content) and it can't be separated. That's why it's handled just like a banner creative. Do you see a way to fit in your outstream video integration ? |
|
Hi @tadam75 At the moment, I'm not sure there is a way to make this type of approach work (while still classifying the I've reached out to several other members of the Prebid team to get their take on this approach and any feedback they have on the direction being attempted here. I'll try to follow-up once there's something definitive. In the meantime, if you want to add partial instream video support for your adapter (ie drop the code parts that support outstream) - we could accept that and get it into If you want to go this route, please let me know and make the updates to this PR. Thanks. |
|
Thanks for your detailed response. As you suggested, we removed the outstream specific code to have instream video support. Do you want me to open the issue for our outstream case ? |
|
@tadam75 If you can, that would be great. I'll look at the updates here and follow-up. |
|
Hi @tadam75 |
Type of change
Description of change
In this pull request, we add the support of video media type (instream & outstream) for the Smart AdServer bid adapter.