Eagle 3D Streaming

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

To keep this tutorial super simple we will look into a very basic webpage.
We assume that your webpage contains a head and body section.

Something like this :

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

To embed stream you first have to collect the simple embedding script from your enagle3dstrmaing control panel.


Click copy iframe script to copy the code in the clipboard.

Now paste this code anywhere inside the body section of the above code.

In my case it became like this:

<!DOCTYPE html>

<html>

<head>

<title>Page Title</title>

</head>

<body>

<h1>This is a Heading</h1>

<iframe style="visibility: visible;" id="iframe_1" src="https://connector.eagle3dstreaming.com/v5/demo/CarConfigurator427/productionConfig" width="100%" height="100%" allowfullscreen style="border: none;"></iframe>

<p>This is a paragraph.</p>

</body>

</html>

The output would be something like this:


If we modify it to something like this :

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<iframe style="visibility: visible;" id="iframe_1" src="https://connector.eagle3dstreaming.com/v5/demo/CarConfigurator427/productionConfig" width="800" height="600" allowfullscreen style="border: none;"></iframe>
<p>This is a paragraph.</p>

</body>
</html>

Here is just modified the size to make the view of streaming viewport bigger.

This is how simple it is to attach the streaming to an existing webpage.

A skilled knowledgeable web Front end guy can make it more precise and better looking.


To embed a meeting (host /guest ) you can look into these two-buttons:

If you want to interact with the ue4 app inside stream then follow our advanced level of iframe implementation which comes with a demo too. Follow this URL :

https://github.com/e3ds/E3DS-Iframe-Demo

  • No labels