Add options to the Vimeo tag

How can I pass options to the Vimeo tag beyond width and height on the built in Kirby Vimeo tag? My client wants to be able to set the default video quality to 1080p … cant see any mention of this in the docs. Is it possible or will i have to override the tag with a tweaked version?

Basically want the tag to output something like this for the video source url…

https://player.vimeo.com/video/157588560?quality=1080p

If you want to make this the default, you can configure it it the config, by setting the Vimeo options.

The Vimeo Kirbtags doesn’t have a quality attribute, so yes, you’d have to overwrite the tag.

Thanks, this did it…

c::set('kirbytext.video.vimeo.options', [
  'quality' => '1080p'
]);