going further on this, could you check if you have a cleaning feature for html when adding events ?
We just noticed that GJ Events would strip the controls tag in video html5 elements.
for instance
Code:
<p>
<video controls src="files/videos/Monia-v2.mp4" poster="files/videos/users/41/welcome-to-MoniA-fr-v2.png" width="1280" height="720" style="display: block; margin-left: auto; margin-right: auto;"></video>
</p>
is being saved as
Code:
<p>
<video controls="files/videos/Monia-v2.mp4" poster="files/videos/users/41/welcome-to-MoniA-fr-v2.png" width="1280" height="720" style="display: block; margin-left: auto; margin-right: auto;"></video>
</p>
I tried without any editor and still get this result.
The only solution was to put controls in the middle of the code, but this is not what standard editors do. Also with this, poster is suppressed and replaced by controls
Code:
<p>
<video src="files/videos/Monia-v2.mp4" controls="files/videos/users/41/welcome-to-MoniA-fr-v2.png" width="1280" height="720" style="display: block; margin-left: auto; margin-right: auto;"></video>
</p>