我使用的是JWplayer 7.2.3并且我有几种视频质量,我使用此代码来显示播放器:
git reset --hard 0231c10
我想在控制栏上显示当前的视频质量标签 - 我该怎么做?
答案 0 :(得分:0)
使用新版本7 CSS皮肤模型,理论上,你可以让玩家看起来像你一样。
对于初学者,您可以使用以下代码来识别当前质量。
jwplayer('myElement').setup({
...
events:
onQualityChange: function(callback) {
updateQuality();
},
function updateQuality() {
var curQual = jwplayer('myElement').getCurrentQuality();
//now you have a variable with the current quality at any given
time and you can build this variable into your custom skin, which
is beyond the scope of this question
}
希望这有帮助!