如何在视频里打广告(视频)
new Vue({ el: '#player', data() { return { vodPlayerJs: 'https://player.polyv.net/script/player.js', vid: '88083abbf514c3bc3c531fa4ca5d552e_8', }; }, mounted(){ this.loadPlayerScript(this.loadPlayer); }, methods: { loadPlayerScript(callback) { if (!window.polyvPlayer) { const myScript = document.createElement('script'); myScript.setAttribute('src', this.vodPlayerJs); myScript.onload = callback; document.body.appendChild(myScript); } else { callback(); } }, loadPlayer() { const polyvPlayer = window.polyvPlayer; this.player = polyvPlayer({ wrap: '#player', vid: this.vid , autoplay:false }); } }, destroyed() { if (this.player) { this.player.destroy(); } } })
视频说明
1.在点播后台里找到并点击【广告管理】,单击左侧菜单栏中的【+添加广告】。 2.然后填写广告名称、描述、链接地址等等,并上传对应的广告素材,最后点击保存即可。 3.应注意的是,添加广告后自动应用到您的视频里面去,服务器需要时间同步更新,请稍等几分钟后再查看广告效果。 4.系统支持常规的四种视频广告模式:片头、片尾、暂停以及弹窗广告,并且点击广告后可以跳转到自定义的页面。
Last updated