Note: We do not provide support for custom code or scripts.
With this hack you can remove loading and play icons. You can also make your video unclickable.
To set this behavior globally, add the following CSS under Customize > Advanced > Custom CSS. To set your changes for only one page/project, add in the page editor under Branding > Edit Custom CSS.
/*To remove the Play button*/
#content-holder .mejs-overlay-button { display: none !important; }
/*To remove Click action*/
#content-holder .video { pointer-events: none !important; }
/*To remove the Loading icon*/
#content-holder .mejs-overlay-loading { display: none !important; }
If you want to apply these rules to a specific video, you will need to add a class name to the Self-Hosted video module. After you added your class name, use it instead of "#content-holder."