Youtube Iframe disable pause video
Use the following CSS on the DOM element:
.ytplayer {pointer-events: none;}
You can try putting a div container over the video with nothing on it. In other words a blank container the same size as the video itself. What this should do is when someone tries to click on it, they will actually be clicking on the transparent container over it and won't be able to pause. This should work. You may also need to change the z-index to make sure the blank div container is truly over the video. (Test div container first with a background color and if the colored box covers the video then you can go back and remove the color and it will work the same.) Good luck.
Also, set the disablekb
parameter to 1 so that user cannot pause even by space-bar.