PDA

View Full Version : wapo.st: Getting Past NetStream.Play.StreamNotFound rtmpdump error


hanmari
10-13-2011, 02:51 AM
Saving this stream should be a cake walk, but I can't get past this hurdle: NetStream.Play.StreamNotFound

VIDEO PAGE: http://wapo.st/o9pszv

The flash embed code is easy to read, but RTMPdump (http://all-streaming-media.com/record-video-stream/rtmpdump-freeware-console-RTMP-downloading-application.htm) can't find the file. I have tried dozens of variations of rtmpdump command options, but haven't found the right combination yet. I couldn't get the rtmpsuck or rtmpsrv commands to reveal the connection settings on my machine, so I feel like I'm shooting in the dark. Can anyone else stream this video? If so, what magical element am I missing?


rtmpdump
-r rtmp://cp18289.edgefcs.net:/ondemand/media/2011/10/11/10112011-92v.m4v
--host cp18289.edgefcs.net
--app ondemand
--playpath /media/2011/10/11/10112011-92v.m4v
--swfUrl http://media10.washingtonpost.com/wp/swf/OmniPlayer.swf
-o /Users/Guest/Desktop/outputfile
-V

nullacht
10-13-2011, 03:11 AM
rtmpdump -r "rtmp://cp18289.edgefcs.net:1935/ondemand?ovpfv=2.1.2" -a "ondemand?ovpfv=2.1.2" -y "mp4:media/2011/10/11/10112011-92v.m4v" -o 10112011-92v.flv

hanmari
10-13-2011, 11:01 AM
Thanks, nullacht!

It looks like there were a few missing items I need to clue in on:


append application with version number: ondemand?ovpfv=2.1.2
prepend --playpath with mp4: to match media type



rtmpdump
-r rtmp://cp18289.edgefcs.net:1935/ondemand?ovpfv=2.1.2
--app ondemand?ovpfv=2.1.2
--playpath mp4:media/2011/10/11/10112011-92v.m4v
-o /Users/Guest/Desktop/outputfile


Did you pull the application version (ondemand?ovpfv=2.1.2) from rtmpsuck or rtmpsrv? That value was not apparent in the html or any of my -z or -V debug output.