Embed zoom video to a web server

Do you consider to enable html streaming without forcing users using the zoom client?
Something like YouTube iframe with a meeting ID in it.

1 Like

Hi @roman,

Thanks for the suggestion, you can embed our web client using an iframe.

<div class="iframe-container" style="overflow: hidden; padding-top: 56.25%; position: relative;">
    	<iframe allow="microphone; camera" style="border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;" src="https://success.zoom.us/wc/join/{meeting-id}" frameborder="0"></iframe>
	</div>
2 Likes

Just to clarify: is this for meeting or webinar only?
Will this enable audience without a zoom account to join the meeting(webinar) ?
Will this play directly, or pop up zoom software download?
(Because I got a reply from support saying we can no long embed meetings on website recently.)
Thanks a lot.

Hi @xrlu0929,

Yes this is for meeting and webinar (currently non-registrants) only. This will play directly into the website however, the client is not UI responsive.

Wow, cool. Thank you for your prompt response.
One more thing to confirm: “the client is not UI responsive” means this web embed part cannot be responsive to mobile screen size, right?

Hi @xrlu0929,

Yes, currently the web embed part is not responsive on the mobile screen. We are working on a responsive design and will let the developers know when it will be released here - https://marketplace.zoom.us/docs/guides/welcome/recent-updates/web-sdk

Thanks

Got it. Thank you ^^

Why is html embed snippet not included in the documentation ? https://support.zoom.us/hc/en-us/articles/115001777826-Live-Stream-Webinars-to-a-Custom-Platform .
Is there any IP / Domain streaming protection where the streaming owner can define which server can be the content embedded to ?

Hi @roman,

The HTML embed is not officially supported as of yet, the iframe snippet is just a workaround until we can officially list this as a feature.

Thanks

i just tried, is not working. Just show a login section, but nothing happends, when the user click on the button. I hope tha you can give me a solution.

Hi @direccion,

Can you explain your use case in detail, possibly provide some screenshots as well?

Thanks

Are you aware of any plugin or HTML code so that you can embed Zoom or Skype Broadcast/Skype for Business into the Jive platform?

Hi @paulthies,

We don’t have a official plugin to embed Zoom into another platform. However, you use an iframe to embed our web client within an application.

Thanks

Hi,

I use the code provided to embed a scheduled webinar but am getting an error code Invalid meeting ID. (3,001)

Any help is greatly appreciated.

thanks

Hey @vitalsynergy,

What is the meeting ID you are using?

Thanks,
Tommy

1 Like

Hi Tommy ,

I used both *********** and 825227050

Thanks

Brent

*This post has been edited to remove any meeting / webinar IDs

Thanks @vitalsynergy.

Can you try removing the success. from the join url and see if that works?

<div class="iframe-container" style="overflow: hidden; padding-top: 56.25%; position: relative;">
    	<iframe allow="microphone; camera" style="border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%;" src="https://zoom.us/wc/join/825227050" frameborder="0"></iframe>
	</div>

that worked!!

thanks very much for the prompt and effective help :slight_smile:

1 Like

Happy to hear it worked!

You are welcome! :slight_smile:

Thanks,
Tommy

1 Like

I am trying the following code but I am getting invalid meeting ID Invalid meeting ID. (3,001). Is it possible to embed this without using a meeting ID? I have tried using https://zoom.us/join/ in the Iframe src but that causes a redirect. Ideally, I want to IFrame the content on this page https://zoom.us/join on my website. Is that possible?