jwplayer的playlist怎么设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jwplayer的playlist怎么设置相关的知识,希望对你有一定的参考价值。
参考技术A 将JW Player嵌入到网页中非常的简单,只需要进行如下3个步骤:1、解压mediaplayer-viral.zip文件,将jwplayer.js和player.swf文件拷贝到工程中;
2、在页面引入jwplayer.js文件:
<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>
3、将下面代码粘贴在body标签内,如下所示:
<div id="Container">Loading the player ...</div>
<script type="text/javascript">
jwplayer("container").setup(
flashplayer: "/jwplayer/player.swf",
file: "/uploads/video.mp4",
height: 270,
width: 480
);
</script>
如何更改 JWPlayer 中的字幕/标题字体大小?
【中文标题】如何更改 JWPlayer 中的字幕/标题字体大小?【英文标题】:How to change subtitles/caption font size in JWPlayer? 【发布时间】:2021-03-18 05:05:23 【问题描述】:如何更改 JWPlayer 配置中的 subtitles 或 caption 字体大小属性,以通过一些选择值来默认字体大小。
【问题讨论】:
【参考方案1】:在官方文档中提到的在我们的代码中配置 JWPlayer 设置时。 Link here
我们可以设置fontSize; 设置好后插入 fontSize 属性 .setCaptions() ,如下例所示 12px
jwplayer("myElement").setup(
"playlist": "https://cdn.jwplayer.com/v2/media/hWF9vG66",
"height": 360,
"width": 640,
"autostart": "viewable",
"advertising":
"client": "vast",
"tag": "http://adserver.com/vastTag.xml"
).setCaptions(
'fontSize' : 12
);
【讨论】:
以上是关于jwplayer的playlist怎么设置的主要内容,如果未能解决你的问题,请参考以下文章
在 FlowPlayer 或 JWPlayer 上播放 m3u8 & RTMP & RTSP?