View Single Post
 
Old 11-03-2012, 12:43 PM
Chug a Bug Chug a Bug is offline
Junior Member
 
Join Date: Sep 2012
Posts: 20
Chug a Bug is on a distinguished road
Smile

Re: Ripping RTMPE streams from RTE.ie


It might be easier do it this way instead of using VideoCacheView:

Start URL snooper (or web developer console in FF), keyword filter swf;hds, open browser and start video playing -



Use the swf URL listed and grab one of the HDS URL's as in the picture and you get these two URL's:

http://www.rte.ie/static/player/swf/osmf2_2012_10_19.swf

http://vod.hds.rasset.ie/hds-vod/2012/1101/adaptive/20121101_rtetwo-thecraigdo_cl10070311_10070321_260_/20121101_rtetwo-thecraigdo_cl10070311_10070321_260__1024k.mp4Seg1-Frag18

Delete the HDS related stuff bolded above and you're left with this: (512k is the only bitrate available for RTMPE stream) -

2012/1101/20121101_rtetwo-thecraigdo_cl10070311_10070321_260_/20121101_rtetwo-thecraigdo_cl10070311_10070321_260__512k.mp4

put that together with the SWF url into our RTMPdump command line and we're left with:

Code:
rtmpdump -r "rtmpe://fmsod.rte.ie:1935/rtevod" -a "rtevod" -W "http://www.rte.ie/static/player/swf/osmf2_2012_10_19.swf" -y "mp4:/2012/1101/20121101_rtetwo-thecraigdo_cl10070311_10070321_260_/20121101_rtetwo-thecraigdo_cl10070311_10070321_260__512k.mp4" -o "thecraigdoyleshow.flv"
to download our file.
Reply With Quote