View Single Post
  #19  
Old 01-09-2010, 04:31 AM
noob2001204 noob2001204 is offline
Senior Member
 
Join Date: Dec 2007
Posts: 213
noob2001204 has a spectacular aura aboutnoob2001204 has a spectacular aura about
Default

Re: bigflix.com: How to download free streaming movies from Adobe Flash Player(RTMPE


Quote:
Originally Posted by gaganspidey View Post
Thanks, you've been very helpful. I followed your post and have reached here :

Now just tell me if the highlighted part is the required URL or only uptill mp4 is the correct URL. Also, after this should I do the following :
Code:
rtmpdump -r "rtmpe://bigflicks.fcod.llnwd.net/a1728/o27/vault/videoclips/tvshows/Ramayan_300.mp4?e=1263038238%26h=7c1809c89cb49df94c32e2baeb726227" -o filename.flv -V
The url you found is correct,but you need to do something on the url in order to download the stream successfully.

Take your url as example

original url:
Code:
rtmpe://bigflicks.fcod.llnwd.net/a1728/o27/vault/videoclips/tvshows/Ramayan_300.mp4?e=1263038238%26h=7c1809c89cb49df94c32e2baeb726227
Add "mp4:" exactly before the playpath (vault/videoclips/tvshows/Ramayan_300.mp4),you can notice there is "%26" in the latter of the url,change it to "&",finally cut the ".mp4" part in the file name,so the new url you should look like this and works

Code:
rtmpe://bigflicks.fcod.llnwd.net/a1728/o27/mp4:vault/videoclips/tvshows/Ramayan_300?e=1263038238&h=7c1809c89cb49df94c32e2baeb726227

For some reasons,the original url doesn't work,you can also search "mp4:" in the memory dump file to see if your playpath is correct.That's how I figured to download from bigflix.com

hyc is right,this site uses SWF verification and the stream will stop downloading at some point
This command should work

Code:
rtmpdump -r "rtmpe://bigflicks.fcod.llnwd.net/a1728/o27/mp4:vault/videoclips/tvshows/Ramayan_300?e=1263038238&h=7c1809c89cb49df94c32e2baeb726227" -W "http://broadband.bigflix.com/apache_file/flash/Player.swf" -o filename.flv -V

Last edited by noob2001204 : 01-09-2010 at 06:12 AM.
Reply With Quote