假设我有一个VAST广告代码用于预贴大视频。
在浏览器中输入VAST网址时,VAST文档的内容包含:
...
<MediaFile delivery="progressive" width="500" height="300"
type="application/javascript" apiFramework="VPAID">
<![CDATA[
http://path/to/some.js
]]>
</MediaFile>
...
如您所见,媒体文件的类型为.js,而不是真正的媒体文件(例如.mp4)
如何将这个VAST广告代码嵌入测试页中?
我不确定将其添加到播放器播放列表中是否会是一个好的解决方案,因为据我了解,
.js文件本身包含对播放器的引用
最佳答案
当使用VAST标签设置JW Player时,您可以这样-http://support.jwplayer.com/customer/portal/articles/1431665-basic-preroll-video-ads
jwplayer('myElement').setup({
file: 'assets/myVideo.mp4',
primary: 'flash',
advertising: {
client: 'vast',
tag: 'http://adserver.com/vastResponse.xml'
}
});
关于javascript - 如何在测试页中嵌入以下VAST代码?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27963941/