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
},
};
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.