Link to home
Start Free TrialLog in
Avatar of MHenry
MHenry

asked on

How to view streaming video from three cameras in eb browser?

I have an IP address that when loaded into a browser provides live streaming video.

Is there a way to set up frames or something that would load three different IP addresses, one in each frame?

I have the API for the cameras but I've never implemented an API. I don't even know how to go about starting on that.

Best,
MH
Avatar of Siva Prasanna Kumar
Siva Prasanna Kumar
Flag of India image

As soon as you put that ip address you see the streaming video? and when you put all the three different IP address in different browser windows you see three different streams?

if yes then you can use Three Iframes in a single page to display the individual address.

Just change the http://w3cshools.com to ur first ip address, google to second and yahoo to third.

<html>
<body>

<iframe src ="http://www.w3schools.com/" width="100%" height="300">
  <p>Your browser does not support iframes.</p>
</iframe>
<iframe src ="http://www.google.com" width="100%" height="300">
  <p>Your browser does not support iframes.</p>
</iframe>
<iframe src ="http://www.yahoo.com" width="100%" height="300">
  <p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>

Open in new window

Save the above code to a html file and open in the browser for testing.
Avatar of MHenry
MHenry

ASKER

Yeah, I figured out that I can view in iFrames and built that. But the client may want me to make it smaller than the native size so he can see them all in full screen.

If he needs that, I'm going to have to figure out the API, I guess...

Unless somebody has something better?
ASKER CERTIFIED SOLUTION
Avatar of Siva Prasanna Kumar
Siva Prasanna Kumar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MHenry

ASKER

Now that's interesting...