Vimeo API - Is there a way to disable the keyboard shortcuts of the embedded vimeo video?

Viewed 449

I often embed the vimeo video via iframe into my website for video conferencing. I can easily hide the control bar by query string like below.

https://player.vimeo.com/video/12345678?controls=0

However, this method only hides the control bar but doesn't disable the shortcuts.

Is there a way to disable the keyboard shortcuts of the embedded Vimeo video?

Thanks

2 Answers

at the moment the only way to disable shortcuts is to make video as background.

Use this querystring: ?background=1&muted=0&loop=0&responsive=1

Best regards Stefano

Use keyboard=0 param to disable keyboard input:

Allows for keyboard input to trigger player events. If false, will ignore keyboard input. Tabbing will still be supported in either mode.

Source: https://github.com/vimeo/player.js#embed-options

Related