Question / Help Custom stream option and VLC under Windows - fixed, with instruction!

sumon

New Member
Awesome report! Thanks a lot for the detailed description and further links :)

By the way, I noticed some people had problems with the ecsds nginx.conf. For people that want to skip step 3 to 5, I think, you could check my compiled versions. You can get them at http://rtmp.jack0r.com/
The latest builds have a working nginx.conf with one application ready to go, web server is set up and stats file ready!

**shameless advertisement** And if you want to use your nginx for more stuff in the future, maybe one of my tutorials can help too:
http://www.helping-squad.com/server/ **shameless advertisement**

hi,
i have download your file and work fine .
but i did not play rtmp link to my website. on jwplayer it shows no source found
here is my code
<script type="text/javascript">
jwplayer("myElement").setup({
file: "rtmp://192.168.0.102:1935/live/flv:test",

height: 360,
image: "images/fm.jpg",
width: 640
});
</script>
 

dping

Active Member
hi,
i have download your file and work fine .
but i did not play rtmp link to my website. on jwplayer it shows no source found
here is my code
<script type="text/javascript">
jwplayer("myElement").setup({
file: "rtmp://192.168.0.102:1935/live/flv:test",

height: 360,
image: "images/fm.jpg",
width: 640
});
</script>
Can your website resolve 192.168.0.102 from the internet? probably not. you'll probably need to port forward (port 1935 TCP?) from your router to 192.168.0.102 then point your website to your router's public IP.

Not exactly safe but its how it should route.

Code:
<script type="text/javascript">
jwplayer("myElement").setup({
  file: "rtmp://(YOUR_PUBLIC_IP_HERE:1935/live/flv:test",

height: 360,
image: "images/fm.jpg",
width: 640
});
</script>
 
Top