如何在 jwplayer 中加载不同质量的源

how to load sources with different qualities in jwplayer

我想知道这个问题。我尝试了一些方法但没有用。 以下是我的代码:

player.load([{
    title: "test line",
    sources: [
        {
            file: message.content,
            provider: "${base}/resources/web/plugins/jwplayer6/HLSProvider6.swf",
            type: "hls",
            label: "240",
            "default": true
        },
        {
            file: message.content,
            provider: "${base}/resources/web/plugins/jwplayer6/HLSProvider6.swf",
            type: "hls",
            label: "360"
        }
    ]
}]);
player.play();

有人可以帮助我吗?

另外: 我也想知道如何设置hlslabel?我设置的没用

我使用 FlowPlayer 而不是 JWPlayer,它解决了我的问题。