welpo/tabi

Facebook videos or custom videos

stalkerGH opened this issue · 2 comments

Embededing Facebook or custom videos

Summary

I'd like to ask if it is possible to embed Facebook videos or custom, self-hosted videos like YT shortcode (example showed here: #371)

Detailed Description

I have short MP4 movie (self-hosted file) which I'd like to embed on my Zola/tabi website. How can I do that?

The standard way to add videos (local files) is (docs):

<video src="filename.mp4" controls="controls"></video>

For a Facebook video, I assume their player provides an embed HTML code. Adding that to your page and allowing the necessary connections to Facebook through the CSP should work.

Thank you!