PDA

View Full Version : (Yet another) What am I doing wrong?


mferris77
02-18-2012, 01:31 PM
Hi all - I am trying to capture video from the live video stream on this page: http://www.nola.com/paradecam/

I have read the forums up and down and have tried many iterations of invoking rtmpdump and it's just not working.

Here's what I've come up with:
rtmpdump -r "rtmp://cp65896.live.edgefcs.net:1935/live/" -a "live/" -f "WIN 11,1,102,62" -W "http://admin.brightcove.com/viewer/us20120217.1246/federatedVideo/BrightcovePlayer.swf" -y "?videoId=802229759001&lineUpId=&pubId=260701697001&playerId=619326652001&affiliateId=" -o test.flv -v -V

..and if you're able to crack it for me, and if the solution isn't glaringly obvious, could you tell me why the above doesn't work? I have a few other live cameras I'd like to pull streams from and don't want to have to bug you every time. :)

Thanks in advance.

Bahman
02-18-2012, 01:41 PM
Where is play path in your script?
rtmpdump -r "rtmp://cp65896.live.edgefcs.net:1935/live" -a "live?videoId=802229759001&lineUpId=&pubId=260701697001&playerId=619326652001&affiliateId=" -f "WIN 11,2,202,197" -W "http://admin.brightcove.com/viewer/us20120217.1246/federatedVideo/BrightcovePlayer.swf" -p "http://www.nola.com/paradecam/" --live -y "NOLA-ParadeCam@9040?videoId=802229759001&lineUpId=&pubId=260701697001&playerId=619326652001&affiliateId=" -o "NOLA-ParadeCam@9040.flv"

RTMPDump v2.4 GIT-2011-12-22 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
INFO: Metadata:
INFO: author
INFO: copyright
INFO: description
INFO: keywords
INFO: rating
INFO: title
INFO: presetname Custom
INFO: creationdate Wed Feb 15 16:53:58 2012
INFO: videodevice USB2.0 Grabber
INFO: framerate 29.97
INFO: width 500.00
INFO: height 374.00
INFO: videocodecid avc1
INFO: videodatarate 350.00
INFO: avclevel 31.00
INFO: avcprofile 66.00
INFO: videokeyframe_frequency5.00
INFO: audiodevice Digital Audio Interface (2- USB
INFO: audiosamplerate 22050.00
INFO: audiochannels 2.00
INFO: audioinputvolume 75.00
INFO: audiocodecid .mp3
INFO: audiodatarate 48.00
250.233 kB / 2.77 sec
;)

mferris77
02-18-2012, 02:39 PM
Thank you so much, Bahman. I guess the -p switch got left out somewhere along the line in my trying to get it to work. Thanks so much for your prompt help.