STREAMING ON BROWSER OVER FRAMES

Questions? Suggestions? Need help? Talk about anything related to Yawcam...
Post Reply
xames
Posts: 3
Joined: Wed Oct 27, 2010 8:21 pm

STREAMING ON BROWSER OVER FRAMES

Post by xames »

I want to make 4 frames without borders with my four webcams to see all in one time on brower but seems to not work the password form. Anybody can post how i can do it easy? in the frames i put the ip and port example:

<html>
<head>
<title>Frames sin borde</title>
</head>
<FRAMESET COLS=“50%,50%”>
<frame src="http://192.168.1.10:8010" frameborder="0">
<frame src="http://192.168.1.11:8011" frameborder="0">
</frameset>
</html>

How to make code for 4 cams?

Thanks.
memoric
Posts: 184
Joined: Wed Feb 23, 2011 1:37 pm

Post by memoric »

Try this:

Code: Select all

<frameset rows="50%,*" frameborder="no">
  <frameset cols="50%,*" frameborder="no">
    <frame src="http://192.168.1.10:8010" noresize="noresize" />
    <frame src="http://192.168.1.11:8011" noresize="noresize" />
  </frameset>
  <frameset cols="50%,*" frameborder="no">
    <frame src="http://192.168.1.12:8012" noresize="noresize" />
    <frame src="http://192.168.1.13:8013" noresize="noresize" />
  </frameset>
</frameset>
What do you mean "but seems to not work the password form"? The stream's
password is not working?
Post Reply