Search code examples
phpmoodlemoodle-apizoom-sdk

How to embed zoom video on a moodle website?


I wanted to embed a stream of a Zoom meeting into HTML and allow users to attend meetings directly inside of an application. I used the following code.

<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>

It worked succcessfully in a basic php site.

Is it possible to apply the same to a moodle website...?

There is a moodle plugin "Zoom Video", but it does not provide this functionality.

How can I add a separate code to embed zoom video on a moodle website...?


Solution

  • One solution is to add an HTML page from Moodle activity and put your HTML code in it.