-
Embededing Facebook or custom videosSummaryI'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 DescriptionI have short MP4 movie (self-hosted file) which I'd like to embed on my Zola/tabi website. How can I do that? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
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. |
Beta Was this translation helpful? Give feedback.
-
Thank you! |
Beta Was this translation helpful? Give feedback.
The standard way to add videos (local files) is (docs):
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.