Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>EDIT: Doe not work with stock iOS or Android 4.0. May have some use for the web, so I will leave this for others.</strong></p> <p>Can you get an RTSP stream from your camera?</p> <p>Here is a list of IP cameras and their RTSP streams: <a href="http://www.soleratec.com/rtsp/" rel="nofollow">http://www.soleratec.com/rtsp/</a></p> <p>If you can make a web page, you can use this code to embed your RTSP stream. It works on iOS, and is fairly universal:</p> <pre><code>&lt;div class="box"&gt; &lt;OBJECT classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab" width="320" height="240" id="vlc" events="True"&gt; &lt;param name="Src" value="rtsp://76.23.103.200:1935/live/camera.stream" /&gt; &lt;param name="ShowDisplay" value="True" /&gt; &lt;param name="AutoLoop" value="False" /&gt; &lt;param name="AutoPlay" value="True" /&gt; &lt;embed id="vlcEmb" type="application/x-google-vlc-plugin" version="VideoLAN.VLCPlugin.2" autoplay="yes" loop="no" width="320" height="240" target="rtsp://76.23.103.200:1935/live/camera.stream" &gt;&lt;/embed&gt; &lt;/OBJECT&gt; &lt;/div&gt; </code></pre> <p>Style your box as required. For an iPhone 4, screen width is going to be 320px, and for a typical IP camera, you probably have a 3:4 aspect ratio, so you want a screen height of 240px, just as listed above. Style the containing div any way you want. I recommend to center it, in case you call the web page in a tablet, laptop, PC, etc. Just makes it easier to see.</p> <p>Example CSS .box { margin: 0 auto; width: 320px; height: 240px; }</p> <p>NOTE: The scope of this answer does NOT address any security concerns. Just like anything on the web, if you put it out there unsecured, anyone can get a hold of it.</p> <p>Re-addressing your latency issues, this method will result in about a 3 second latency while streaming at 32kbps. May be a bit longer on a 3G wireless network. As I mentioned, latency is a fact of life with video. Even very expensive solutions will have 1-2 seconds of lag.</p> <p>I hope this helps you some. If you don't have a website, just make a free Wordpress site and stick this code into a static page.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload