[315] | 1 | <html>
|
---|
| 2 | <head>
|
---|
[319] | 3 | <title>py-tcpmultiplexer Webcam Control </title>
|
---|
[315] | 4 | <link href="css/style.css" type="text/css" rel="stylesheet"/>
|
---|
| 5 | <script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
|
---|
| 6 | <script type="text/javascript" src="js/jquery.jplayer.min.js"></script>
|
---|
[319] | 7 | <script type="text/javascript">
|
---|
[321] | 8 | function changeAudio(wav_uri)
|
---|
[319] | 9 | {
|
---|
| 10 | $("#jplayer").jPlayer({
|
---|
| 11 | ready: function () {
|
---|
[321] | 12 | $(this).jPlayer("stop");
|
---|
[319] | 13 | $(this).jPlayer("setMedia", { wav: wav_uri }).jPlayer("play");
|
---|
| 14 | },
|
---|
| 15 | ended: function (event) {
|
---|
| 16 | $(this).jPlayer("play");
|
---|
| 17 | },
|
---|
| 18 | swfPath: "",
|
---|
| 19 | supplied: "wav"
|
---|
| 20 | });
|
---|
| 21 | }
|
---|
| 22 |
|
---|
| 23 | function changeVideo(mjeg_uri)
|
---|
| 24 | {
|
---|
| 25 | $("#player").attr("src",mjeg_uri);
|
---|
| 26 | $("#player").attr("alt","Video Feed: " + mjeg_uri);
|
---|
| 27 | }
|
---|
| 28 | </script>
|
---|
[321] | 29 |
|
---|
[315] | 30 | </head>
|
---|
| 31 | <body>
|
---|
[319] | 32 | <h1>py-tcpmultiplexer webcam server</h1>
|
---|
[315] | 33 |
|
---|
[321] | 34 | <div>
|
---|
| 35 | <table>
|
---|
| 36 | <tr><td>Select WebCam:</td><td>
|
---|
| 37 | <input type="radio" name="cam" value="img/logo.png" checked="checked">None</input>
|
---|
[329] | 38 | <input type="radio" name="cam" value="/cam1/video">RepRap</input>
|
---|
[333] | 39 | <input type="radio" name="cam" value="/cam2/video">RoomA</input>
|
---|
[329] | 40 | <input type="radio" name="cam" value="/cam3/video">Kitchen</input>
|
---|
[333] | 41 | <input type="radio" name="cam" value="/cam4/video">OccTelex</input>
|
---|
| 42 | <input type="radio" name="cam" value="/cam5/video">RickCam</input>
|
---|
| 43 | <input type="radio" name="cam" value="/cam6/video">EdCam</input>
|
---|
| 44 | <input type="radio" name="cam" value="/cam7/video">MobileCam</input>
|
---|
[321] | 45 | </td></tr>
|
---|
| 46 | <tr><td>Select Audio:</td><td>
|
---|
| 47 | <input type="radio" name="sound" value="none" checked="checked" >None</input>
|
---|
[333] | 48 | <input type="radio" name="sound" value="/cam1/audio">RepRap</input>
|
---|
| 49 | <input type="radio" name="sound" value="/cam7/audio">MobileCam</input>
|
---|
[321] | 50 | </td></tr>
|
---|
| 51 | </table>
|
---|
[315] | 52 |
|
---|
[321] | 53 | <script type="text/javascript">
|
---|
| 54 | $("input[name='cam']").change(function () {
|
---|
| 55 | changeVideo($("input[name='cam']:checked").val());
|
---|
| 56 | });
|
---|
| 57 | $("input[name='sound']").change(function () {
|
---|
| 58 | changeAudio($("input[name='sound']:checked").val());
|
---|
| 59 | });
|
---|
| 60 | </script>
|
---|
| 61 |
|
---|
| 62 | <div>
|
---|
| 63 | <img id="player" src="img/logo.png" alt="Video feeds"/><br/>
|
---|
[315] | 64 | </div>
|
---|
| 65 |
|
---|
[321] | 66 | <div id="jplayer" />
|
---|
[315] | 67 |
|
---|
[319] | 68 |
|
---|
[321] | 69 |
|
---|
[315] | 70 | <hr />
|
---|
[319] | 71 | <p>Tested browsers: <a href="http://www.firefox.com">Mozilla Firefox</a>, <a href="http://www.google.com/chrome">Google Chrome</a> (<em>If no video appear below, you are using unsupported browser</em>)<br />
|
---|
[328] | 72 | <small>Source Code at: <a href="http://rickvanderzwet.nl/svn/personal/py-tcpmultiplexer/">http://rickvanderzwet.nl/svn/personal/py-tcpmultiplexer/</a> build @ <a href="http://opencommunitycamp.org">#occ2011</a> - feedback/comments at <a href="irc://irc.freenode.net/#occ">#occ</a></small>
|
---|
[315] | 73 |
|
---|
[325] | 74 | <p />
|
---|
[328] | 75 | Example stream creation from Webcam or Buildin Camera:
|
---|
| 76 | <table border="1">
|
---|
| 77 | <tr><td>Linux</td><td>:</td><td><tt>vlc -I http v4l:///dev/video0 --sout='#transcode{vcodec=MJPG}:standard{access=http{mime=multipart/x-mixed-replace;boundary=--7b3cc56e5f51db803f790dad720ed50a},mux=mpjpeg,dst=0.0.0.0:9000/webcam}}'</tt>
|
---|
| 78 | </td></tr>
|
---|
| 79 | <tr><td>Mac</td><td>:</td><td><tt>/Applications/VLC.app/Contents/MacOS/VLC qtcapture:// --sout='#transcode{vcodec=MJPG,vfilter=canvas{width=640,height=480}}:standard{access=http{mime=multipart/x-mixed-replace;boundary=--7b3cc56e5f51db803f790dad720ed50a},mux=mpjpeg,dst=0.0.0.0:9000/webcam}}'</tt>
|
---|
| 80 | </td></tr>
|
---|
| 81 | <tr><td>Windows</td><td>:</td><td><tt>???</tt></td></tr>
|
---|
| 82 | <tr><td>iPhone</td><td>:</td><td><tt>???</tt></td></tr>
|
---|
| 83 | <tr><td>Android</td><td>:</td><td><tt><a href="https://market.android.com/details?id=com.pas.webcam">IP Webcam</a></tt></td></tr>
|
---|
| 84 | </table>
|
---|
[325] | 85 |
|
---|
[315] | 86 | </body>
|
---|
| 87 | </html>
|
---|