如何禁用 JWPlayer 中的高清按钮?

How can I disable the HD button in JWPlayer?

我管理一个在某些情况下实现 JWPlayer 的网络流媒体和存档站点;我想弄清楚如何从控制栏中删除 HD 按钮,而不删除整个控制栏。

这个sort-of落在JWPlayer检测到RTMP服务器header是否自动添加高清按钮的问题上;但我认为它不应该收到这样的消息 header...不过我不得不在我的服务器中翻转。

故事的寓意 - 有谁知道我如何手动将 HD 按钮从 JWPlayer 中删除?

您需要创建自定义皮肤。 查看 here and at the skin reference 了解更多信息和基本皮肤。 要禁用高清按钮,您需要从 xml:

中删除 hdButtonhdButtonOverhdButtonOff 元素
<element name="hdButtonOff" ...... />
<element name="hdButton"......./>

获得皮肤后加载它:

jwplayer("myElement").setup({
    skin: "mySkin/mySkin.xml"
});