embed a video into a webpage | change html code?
(sorry - I posted it in the wrong topic and I can't move it)
Hello!
I like to embed a video into a webpage (via html code) and want to suppress that viewers can see the "download" button and the "watch in Panopto" button. I have read the documentation "How to Embed a Video into a Webpage" (https://support.panopto.com/s/article/Embed-a-Video). Unfortunately, I don't have those "Video Embed Options".
Thus, I want to ask: Is there a possibility to include a "suppress-the-download-button" part and a "disable-watch-in-panopto" part in the html code?
Thanking you in advance!
Best Answer
-
Caitlin McCabe Administrator
Hi Charlotte,
If you take a look at the very bottom of the article you linked, you'll see that we have options to customize the embed code manually. You can ensure the video can't be downloaded by checking the video's settings and changing the download drop-down setting to Admins, Videographers, and Creators only. This ensures that the download arrow will not appear in the full Panopto viewer or embedded players. As for disabling the "Watch in Panopto" pop-out arrow, you can add OfferViewer=False to the embed code.
For example, here's the default embed code:
<iframe src="https://demo.hosted.panopto.com/Panopto/Pages/Embed.aspx?id=69f90b29-6f14-444f-8ff2-9b615ed6c101&v=1" width="450" height="300" frameborder="0"></iframe>
and here's what it would look like if you were to disable the viewer:
<iframe src="https://demo.hosted.panopto.com/Panopto/Pages/Embed.aspx?id=69f90b29-6f14-444f-8ff2-9b615ed6c101&v=1&offerviewer=false" width="450" height="300" frameborder="0"></iframe>
Also, I've moved your post to the Product Questions category - please let me know if you need help with anything else.
Best wishes,
Cait
5
Answers
Thanks a lot! This is exactly what I was looking for.