我使用了jw播放器广告版本,似乎我的代码无法工作。我使用外部js配置文件。不确定真正的问题..寻求支持。 谢谢!
我的代码:
外部js文件中的: 我把以下代码: HTML源代码:
jwplayer("my-video").setup({
file: file,
aspectratio: "16:9",
skin: {
name: "five",
active: "red",
inactive: "white",
background: "black"
},
width: width,
height: height,
primary: primary,
advertising: advertising
});
pre.html中的
我输入以下代码:
<script type="text/javascript">
var file: "https://s3.amazonaws.com/aws-website-awsvideouploadvastadscustomizer-f3qi3/videos/JACKALS+Trailer+(2017)+Horror+Movie.mp4",
var width: "580",
var height: "360",
var primary: "flash",
var advertising: {
var client: "vast",
var schedule: {"ad tag"}
};
</script>
答案 0 :(得分:0)
首先,您需要设置JW脚本URL(https://support.jwplayer.com/customer/portal/questions/16758746-cdn-url)。在仪表板中,您可以设置播放器的高度和宽度以及颜色。
然后你需要设置JW播放器(假设div#my-video是播放器,然后你需要设置文件)
var playerInstance = jwplayer("my-video");
playerInstance.setup({
'file' : 'https://s3.amazonaws.com/aws-website-awsvideouploadvastadscustomizer-f3qi3/videos/JACKALS+Trailer+(2017)+Horror+Movie.mp4',
});