I have a problem with my Iframe I put on my next js app. The code cannot be easier :
<iframe
id="xxxx"
src={urlWebTv + '&playsinline=1'}
className={styles.iframe}
allowFullScreen
allow={'autoplay'}
loading={'eager'}
/>
When I click "Play" on my video, it automatically switches the video to full screen on my iphone... I tried with/without the param : playsinline. It doesn't change anything.
Could you help me ? Thank you.
(It works ok on Android and Web Browser...)