View Single Post
  #10  
Old 11-06-2014, 11:06 PM
blimey blimey is offline
Former Member
 
Join Date: Jul 2006
Posts: 286
blimey is on a distinguished road
Default

Re: Error : netstream.failed rtmpdump


Quote:
Originally Posted by mounaime10 View Post
My problem I want to download a video, but it shows me "netstream.failed".

Here is the command used:
Code:
rtmpdump -r "rtmpe://s1oeoq2ag2cdmr.cloudfront.net/cfx/st" -a "cfx/st" -f "WIN 11,9,900,117" -W "http://www.alphorm.com/fp/flowplayer.rtmp-3.2.11.swf" -p "http://www.alphorm.com/video/1224/94" -y "mp4:FR_130/FR_130_01_01.mp4%3FExpires%3D1415296551%26Signature%3DeExqm1AjO4zoouhiwJ8b4KNZf8ivWK3Pkmqo5zhVNav5~guGgtZNYotLzBZ-LlqzWO6UwnD4Gb5QYf~GdDeKqrEwYKmPYFKQ2WRxMRySfMoOohnbyW-ayG~~ZSFyac0MmeoiEk2eW8-uBpV2PVgAmC4YqcvNF7s5jqo7SQ7NiYk_%26Key-Pair-Id%3DAPKAJF2PMCJPGKXG2GEA" -o "C:\Users\ADAM\Desktop\RTMPDump\output\video.flv"
Your command line will probably work if you exchange the html url % encoding for the direct character value. %3F(?), %3D(=), %26(&), etc. Though it may be expired by now.

Edit;
Checked it. Exchanging the html url % encoding does work.

Video is the first one on this page;
Code:
http://www.alphorm.com/formation/formation-citrix-xenserver-6-administration-a26
Url escape codes exchanged (still needs new Signature);
Code:
rtmpdump -r "rtmpe://s1oeoq2ag2cdmr.cloudfront.net/cfx/st" -a "cfx/st" -y "mp4:FR_130/FR_130_00_00.mp4?Expires=1415344847&Signature=<-----insert signature here----->&Key-Pair-Id=APKAJF2PMCJPGKXG2GEA" -o FR_130_00_00.flv
Get signature from source;
Code:
view-source:http://www.alphorm.com/video/1222/94
Reply With Quote