playbackSpeedSelectionEnabled property not working

Hello Bitmovin Community,

I am new to this community. I am working on disabling the playback speed option on a bitmovin player. From what I remember it worked at some point but unfortunately, it is not working anymore.

This is what I have as config.
var conf = {
key: “my-bitmovin-account-key”,
location: {
ui: ‘bitmovin-player’,
},
playback: {
autoplay: true, // Not working
seeking: false,
},
ui: {
playbackSpeedSelectionEnabled: false, // Not working
enableSeekPreview: false, // Not working
},
};

Please help if you can. Thanks

Hi,
I just tried it out with the lates player version and it seems to work:

        var conf = {
            key: 'YOUR KEY HERE',
            ui: {
                playbackSpeedSelectionEnabled: false
            }
        };

I don’t fully understand the use of the location configuration, however, in your case. the “ui” parameter should contain the URL of the JS UI in case you are using a custom one, and otherwise, the location config can be omitted.

location: {
  ui: ‘bitmovin-player’,
},

I suspect that it is related to the issue.
Please feel free to follow up here or to open a support ticket with a standalone HTML page in order for us to reproduce the behaviour.

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.