Placing small MP4s into my site

Hello, I am an occasional user of Rapid weaver 8. last year I made a site patrickboyd.co.uk I would now like to replace some of the photos with very short MP4 videos. I am using stacks and ‘source’. what would be the best way to achieve this please. the videos would be self hosted (I think this is the correct term). The MP4s last for about 2 to 3 seconds I would like them to loop. the videos can be seen on my instagram page: patrick_boyd_light any guidance would be greatly appreciated. thank you

Hi @peekaybee,

You could probably stick some HTML code into an HTML stack. Something like:

<video autoplay playsinline muted loop="true" width="1280" height="720"><source type="video/mp4" src="https://yourwebsite.com/your-video.mp4"></video>

You can adjust the width and height variables to match your desired size.

Replace the src URL with the actual URL to your .mp4 files on your server.

Let us know how it goes.