]> git.sesse.net Git - vlc/blob - share/http/webcam.html
* some style fixes (now displays menu under IE)
[vlc] / share / http / webcam.html
1 <?xml version="1.0" encoding="iso-8859-1" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD  XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml10/DTD/xhtml10transitional.dtd">
3
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
5         <head>
6                 <title>VideoLAN browser output</title>
7                 <link href="/style.css" title="Default" rel="stylesheet" type="text/css" />
8         </head>
9 <body>
10 <p>
11 This is an example webpage for viewing a Multipart MJPEG stream from any browser. You should edit it to point to the URL of your MPJEG stream that you are streaming with VLC or with a AXIS webcam for instance. For setting up such a stream, refer to the <a href="http://www.videolan.org/doc">VideoLAN HOWTO</a>.</p>
12 <p>The page has two modes. A Netscape browser compatible mode which will directly show the videostream, and a mode in which it uses a Java Applet. This is because many browsers cannot handle live MJPEG streams. The Applet in use is the <a href="http://www.charliemouse.com/code/cambozola">Cambozola</a> plugin. You will need to download it from the Cambozola website and put it in the same directory as this webpage.</p>
13
14 <h1>Netscape style</h1>
15 <a href="http://vlc.server.org:8080/thestream">Click Here</a><br />
16
17 <h1>Java applet style</h1>
18 <applet code="com.charliemouse.cambozola.Viewer" archive="cambozola.jar" width="320" height="240">
19 <param name="url" value="http://vlc.server.org:8080/thestream">
20 <param name="properties" value="none">
21 </applet>
22
23 </body>
24 </html>