Need to replace the slide show with a video slide show using video file. This is a Joomla 4 using Joomlart template HELPLE. There must be a way or an extension - also needs to be responsive. Tried Yoo's widgetkit - doesn't work. Can't find any extensions...
Video Slide Show Solution Needed
You could try creating a custom module in that position. Use the No editor mode to enter some html 5 as desired. Below is an example of the video tag. You can set width to a percentage instead of a fixed width.
<video width="320" height="240" autoplay>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>