
06-19-2009, 07:50 AM
|
|
 Re: rtmpdump.com - freeware RTMP stream downloader (MacOS X, Linux, Windows)
Quote:
Originally Posted by flysub
I just trying to download from a website with rtmpe and swf verification and i received the following :
Code:
"warning: handleping: Ignoring swfvrification request, use --swfhash and swfzise! "
"failed to play stream not found"
the strange is for others website it's working
any ideas??
|
According to rtmpdump 1.6 readme by Andrej Stepanchuk:
Quote:
Download the swf player you want to use for SWFVerification, unzip it using
Code:
$ flasm -x file.swf
It will show the decompressed filesize, use it for --swfsize
Now generate the hash
Code:
$ openssl sha -sha256 -hmac "Genuine Adobe Flash Player 001" file.swf
and use the --swfhash "01234..." option to pass it. e.g.
Code:
$ ./rtmpdump --swfhash "123456..." --swfsize 987...
|
|