The controls Download, Playback speed and Picture-in-picture couldn't be hidden via configuration anymore.
Affected version: 3.3.3.
Neither setting the config prop with
{ html: { attributes: { controlsList: "nodownload noplaybackrate", disablePictureInPicture: true } } }
nor the props pip as false, controlsList="nodownload noplaybackrate" and disablePictureInPicture={true}
could hide them.
In prev version 2.16.0 this was possible with
{ file: { attributes: { controlsList: "nodownload noplaybackrate", disablePictureInPicture: true } } }
The temporary workaround is to set those props directly in the DOM on the video element, which is not the best solution.
The controls
Download,Playback speedandPicture-in-picturecouldn't be hidden via configuration anymore.Affected version:
3.3.3.Neither setting the
configprop withnor the props
pipas false,controlsList="nodownload noplaybackrate"anddisablePictureInPicture={true}could hide them.
In prev version
2.16.0this was possible withThe temporary workaround is to set those props directly in the DOM on the video element, which is not the best solution.