我有个问题。我和我的朋友有一个网站。我们在这个网站上添加了很多电影。我们使用 JwPlayer 播放电影。但我们总是添加带有电影 url 的脚本代码。例如:
<script type='text/javascript' src='http://sinemall.net/wp-content/plugins/jw-player-plugin-for- wordpress/jwplayer.js'></script>
</script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
jwplayer('mediaspace').setup({
sources: [{
file: "http://www.website.com/..........720p.mp4",
label: "720p HD",
"default": "true"
},{
file: "http://www.website.com/..........1080p.mp4",
label: "1080p HD"
}]
});
</script>
有没有更短的方法,如:
[embed]file: "http://www.website.com/..........720p.mp4",
label: "720p HD",
"default": "true"
},{
file: "http://www.website.com/..........1080p.mp4",
label: "1080p HD"
[/embed]
或者我如何在 WordPress 中使用 Jwplayer 主视频播放器?