How do you disable Picture in Picture mode on html5 videos?
Please note I'm not referring to this question which relates to Apple's AVKit
I know you can disable video download with controlsList="nodownload"
, how is it possible for Picture in Picture mode.
<video controls controlsList="nodownload">
<source src="https://www.w3schools.com/html/mov_bbb.ogg" type="video/mp4">
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/ogg">
</video>