
I need help connecting to stream (IP-camera) "RTSP"..!
Hey there! I need help connecting to stream from my TP-LINK TL-SC3171 Day/Night IP Camera using the RTSP protocol.. I am able to connect and view stream with the VLC Video Player ( http://www.videolan.org/ ) using this Network address: rtsp://website:inf123@pleiadian.dyndns.info:554/video.mp4
Address format: username:password@IP:port/file
I read somewhere that you need to set a stream AND a file address.. How do I find out what is my stream address..?
The HTML-code I use for my stream:
<script type="text/javascript">
jwplayer("stream_01").setup({
flashplayer: "/jwplayer/player.swf",
file: "rtsp://website:inf123@pleiadian.dyndns.info:554/video.mp4",
width: 640,
height: 480,
image: "/jwplayer/video/logo.png",
skin: "/jwplayer/skins/slim/slim.zip"
}); </script>
--
I found another address on the forum and tested it.. It worked using the following HTML-code:
<script type="text/javascript">
jwplayer("stream_02").setup({
flashplayer: "/jwplayer/player.swf",
file: "rtsp://root:moo2poo@rmt-501-00408ca5b858.ddns.rmcentral.net:18130/axis-media/media.amp",
streamer:"rtmp://rmtproxy-000180786ADF.ddns.rmcentral.net:1936/rtplive",
width: 640,
height: 480,
image: "/jwplayer/video/logo.png",
skin: "/jwplayer/skins/slim/slim.zip"
}); </script>
I have the following code in the beginning of the HTML-file: <script type="text/javascript" src="/jwplayer/jwplayer.js"></script>
--
Starlight