I’ve encountered a constant concern on iOS units when setting the playsinline attribute for video playback. Regardless of this setting, the video transitions right into a “Dwell broadcast” mode, robotically coming into fullscreen mode. This habits mirrors a beforehand reported concern in (https://github.com/pichillilorenzo/flutter_inappwebview/points/1452.)
The fullscreen “Dwell broadcast” mode permits for a swipe motion to revert the video to inline play, however this workaround is lower than excellent for person expertise. Extra critically, when operating in standalone Progressive Net App (PWA) mode, this habits fully locks up the applying, stopping any additional interplay.
I am presently exploring different options, resembling repainting the video onto a canvas aspect, to avoid this fullscreen takeover. Nevertheless, I am uncertain if this strategy will resolve the underlying concern or if there are extra direct options accessible.
Has anybody else confronted this drawback or have recommendations on learn how to preserve inline video playback with out triggering the fullscreen mode, particularly within the standalone PWA context?
Any steering or workarounds could be drastically appreciated.
<video
controls
src="http://"
playsinline
webkit-playsinline
playsInline
disableremoteplayback
controlslist="nodownload"
loop
muted
autoplay
></video>
Video is on the market right here :
https://github.com/collab-project/videojs-record/points/714