Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   rtmpdump (http://stream-recorder.com/forum/forumdisplay.php?f=54)
-   -  

cam stream

(http://stream-recorder.com/forum/showthread.php?t=19518)

garlo 03-22-2015 06:27 AM

cam stream


 
hi
i'm trying to find stream url of cams from earthcam.com
lets say this one
http://www.earthcam.com/usa/newyork/...cam=nyc5th_str
using wireshark i get tcUrl
rtmp://video4.earthcam.com:1935/fecnetwork
and play is fridays_5th.flv
so then in cmd prompt withing rtmpdump folder:
rtmpdump -v -r "rtmp://video4.earthcam.com:1935/fecnetwork/fridays_5th.flv" | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe"

but i get :
WARNING: you havent specified an output file (-0 filename), using stdout
Connecting ...
INFO: Connected ...
ERROR: rtmp server sent error
ERROR: rtmp server requested close

biezom 03-22-2015 06:32 AM

Re: cam stream


 
hi
Code:

rtmpdump -r "rtmp://video4.earthcam.com:1935/fecnetwork" -a "fecnetwork" -f "WIN 17,0,0,134" -W "http://static.earthcamcdn.com/swf/streaming/stream_viewer_v3.swf" -p "http://www.earthcam.com/usa/newyork/fifthave/?cam=nyc5th_str" -y "fridays_5th.flv" | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe"

garlo 03-22-2015 08:09 AM

Re: cam stream


 
i get:
http://postimg.org/image/6rhfxbokx/
and just holds there, no picture in vlc

biezom 03-22-2015 08:15 AM

Re: cam stream


 
Quote:

Originally Posted by garlo (Post 75047)
i get:
http://postimg.org/image/6rhfxbokx/
and just holds there, no picture in vlc

sorry i forgot an - at the end

Code:

rtmpdump -r "rtmp://video4.earthcam.com:1935/fecnetwork" -a "fecnetwork" -f "WIN 17,0,0,134" -W "http://static.earthcamcdn.com/swf/streaming/stream_viewer_v3.swf" -p "http://www.earthcam.com/usa/newyork/fifthave/?cam=nyc5th_str" -y "fridays_5th.flv" | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -

garlo 03-22-2015 08:31 AM

Re: cam stream


 
ok thanks it works.
so with which program do You find the code ?

also i'm qurious what does this mean:
#EXTINF:-1,Amsterdam Netherlands HD
rtmp://$OPT:rtmp-raw=rtmp://video4.earthcam.com/fecnetwork/4098.flv.flv pageUrl=http://www.earthcam.com swfUrl=http://www.earthcam.com/swf/cam_player_v2/ecnPlayer.swf?20120504_a live=1

found it here:
http://www.tvonlinestreams.com/earth...ted-simple-tv/

i know pageurl and swfurl, but the first part is bugging me:
rtmp://$OPT:rtmp-raw=

and where does that whole code go ?

biezom 03-22-2015 08:34 AM

Re: cam stream


 
Quote:

Originally Posted by garlo (Post 75049)
ok thanks it works.
so with which program do You find the code ?

also i'm qurious what does this mean:
#EXTINF:-1,Amsterdam Netherlands HD
rtmp://$OPT:rtmp-raw=rtmp://video4.earthcam.com/fecnetwork/4098.flv.flv pageUrl=http://www.earthcam.com swfUrl=http://www.earthcam.com/swf/cam_player_v2/ecnPlayer.swf?20120504_a live=1

found it here:
http://www.tvonlinestreams.com/earth...ted-simple-tv/

i know pageurl and swfurl, but the first part is bugging me:
rtmp://$OPT:rtmp-raw=

and where does that whole code go ?

i use rtmpdumphelper
rtmp://$OPT:rtmp-raw= it's the code when you use simpleTV

Code:

rtmpdump -r "rtmp://video4.earthcam.com/fecnetwork/4098.flv.flv" -p "http://www.earthcam.com" -W "http://www.earthcam.com/swf/cam_player_v2/ecnPlayer.swf?20120504_a" --live | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -

garlo 03-22-2015 08:56 AM

Re: cam stream


 
ok , and do you know which program generates that whole code for simple tv?

Also is there a easier way of sending code to the vlc,or do i have to go through the cmd prompt every time ?

And the point of all of this... is there a way to stream such a earthcam-webcam on the desktop background?
vlc has a video-set as wallpaper but it covers all the shortcuts on the desktop.

biezom 03-22-2015 09:18 AM

Re: cam stream


 
Quote:

ok , and do you know which program generates that whole code for simple tv?
i don't know but rtmpdumphelper works. you need just change -p -W -y ........ by pageUrl= swfUrl= playpath= .......

Quote:

Also is there a easier way of sending code to the vlc,or do i have to go through the cmd prompt every time ?
you can create a playlist earthcam.m3u

Code:

#EXTM3U
#EXTINF:-1,Amsterdam Netherlands HD
rtmp://video4.earthcam.com/fecnetwork/4098.flv.flv pageUrl=http://www.earthcam.com swfUrl=http://www.earthcam.com/swf/cam_player_v2/ecnPlayer.swf?20120504_a live=1
#EXTINF:-1,nyc5th
rtmp://video4.earthcam.com:1935/fecnetwork/ swfUrl=http://static.earthcamcdn.com/swf/streaming/stream_viewer_v3.swf pageUrl=http://www.earthcam.com/usa/newyork/fifthave/?cam=nyc5th_str playpath=fridays_5th.flv

Quote:

And the point of all of this... is there a way to stream such a earthcam-webcam on the desktop background?
vlc has a video-set as wallpaper but it covers all the shortcuts on the desktop.
i don't know

garlo 03-22-2015 09:34 AM

Re: cam stream


 
Quote:

Originally Posted by biezom (Post 75052)
you can create a playlist earthcam.m3u

is there a instruction somewhere how to do it ?

also is rtmpsrv kind of a shortcut for cmd prompt ?
but when i run it and copy/paste the code something goes wrong and i get :
http://postimg.org/image/s4hgpxs7n/

-D3n1s- 03-22-2015 11:50 AM

Re: cam stream


 
Quote:

Originally Posted by garlo (Post 75051)
ok , and do you know which program generates that whole code for simple tv?



All times are GMT -6. The time now is 02:18 AM.