Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming audio and video online. Audio and video downloads. > Playing online streaming in media players
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #11  
Old 10-09-2011, 02:41 AM
MaxMustermann MaxMustermann is offline
Junior Member
 
Join Date: Sep 2011
Posts: 11
MaxMustermann is on a distinguished road
Default

Re: streami.tv - How to watch live with rtmpdump


It doesn't work for me too. This is how I call rtmpdump:

Code:
rtmpdump.exe -r "rtmp://origin.streami.tv:1936/streami/" \
 -a "streami/" -f "LNX 11,0,1,129" \
 --swfVfy "http://streami.tv/fp/flowplayer.commercial-3.2.7.swf?827837929" \
 -p "http://streami.tv/embed/e2.php?h=450&w=600&n=XdcmjYaSfmWp9qLnBtBXP3xvupqfc8KypnBPVOiwds%252Fgjm96ROaEK0%252BogTHpa2vWMZ5c9Ktgq6K%252BQguF8bAUKT28NU9rWJHJd76%252F1RnV93d257AFkvfiRTMC62tD07XDIhS2TyALH3AfLM4dJCk%252FV%252FysbrSc" \
 -y "streamHitsports5587-yyts" -z

and this is what I get:
http://pastebin.com/nL35YRcp

I hope you can help me.
Reply With Quote
  #12  
Old 10-09-2011, 07:29 AM
nullacht nullacht is offline
Senior Member
 
Join Date: Jan 2010
Posts: 230
nullacht will become famous soon enoughnullacht will become famous soon enough
Default

Streami.tv


Code:
http://streami.tv/files/fp/flowplayer.commercial-3.2.7.swf
You must compute size and hash manually!

Code:
--swfsize "243109"
Code:
--swfhash "18aa00047612fe5f7c39a6d15806889b21fe4f1e6faf404479bcfb09908caeba"
RTMPDump v2.4:

Code:
rtmpdump -r "rtmp://50.7.241.98:1936/streami/" -y "streamVIP-TV-trjs" -s "http://streami.tv/files/fp/flowplayer.commercial-3.2.7.swf" --swfsize "243109" --swfhash "18aa00047612fe5f7c39a6d15806889b21fe4f1e6faf404479bcfb09908caeba" -o streamVIP-TV-trjs.flv --live
Code:
RTMPDump v2.4
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
ERROR: rtmp server sent error
Starting Live Stream
INFO: Metadata:
INFO:   author
INFO:   copyright
INFO:   description
INFO:   keywords
INFO:   rating
INFO:   title
INFO:   presetname            Custom
INFO:   creationdate          Sun Oct 09 04:42:56 2011
INFO:   videodevice           AVerMedia Cx23888 Video Capture
INFO:   framerate             30.00
INFO:   width                 640.00
INFO:   height                360.00
INFO:   videocodecid          avc1
INFO:   videodatarate         500.00
INFO:   avclevel              31.00
INFO:   avcprofile            66.00
INFO:   videokeyframe_frequency2.00
INFO:   audiodevice           Line In (Realtek High Definitio
INFO:   audiosamplerate       44100.00
INFO:   audiochannels         1.00
INFO:   audioinputvolume      90.00
INFO:   audiocodecid          .mp3
INFO:   audiodatarate         64.00
3465.623 kB / 54.34 sec
Reply With Quote
  #13  
Old 10-09-2011, 08:17 AM
MaxMustermann MaxMustermann is offline
Junior Member
 
Join Date: Sep 2011
Posts: 11
MaxMustermann is on a distinguished road
Default

Re: streami.tv - How to watch live with rtmpdump


Thank you again, nullacht. It works as expected. You are the man
Reply With Quote
  #14  
Old 10-09-2011, 10:36 AM
karlo2105 karlo2105 is offline
Senior Member
 
Join Date: Sep 2011
Posts: 318
karlo2105 is on a distinguished road
Default

Re: streami.tv - How to watch live with rtmpdump


It's working to me with -W parameter and I use KSV latest version.
Reply With Quote
  #15  
Old 10-09-2011, 01:18 PM
nullacht nullacht is offline
Senior Member
 
Join Date: Jan 2010
Posts: 230
nullacht will become famous soon enoughnullacht will become famous soon enough
Default

Re: streami.tv - How to watch live with rtmpdump


You can currently use both methods. But remember my post above, when they are hiding their .swf file again.
Reply With Quote
  #16  
Old 10-09-2011, 01:23 PM
karlo2105 karlo2105 is offline
Senior Member
 
Join Date: Sep 2011
Posts: 318
karlo2105 is on a distinguished road
Default

Re: streami.tv - How to watch live with rtmpdump


Quote:
Originally Posted by nullacht View Post
You can currently use both methods. But remember my post above, when they are hiding their .swf file again.
Yes thanks for it. I thought they used Secure Token but I checked their SWF player and there isn't any Token. ;-)
Reply With Quote
  #17  
Old 10-10-2011, 01:15 AM
chap chap is offline
Senior Member
 
Join Date: Feb 2011
Location: Ukraine
Posts: 1,165
chap is on a distinguished road
Default

Re: streami.tv - How to watch live with rtmpdump


nullacht
Quote:
You must compute size and hash manually!
how do you calculate this data?Thanks.
Reply With Quote
  #18  
Old 10-10-2011, 03:37 AM
karlo2105 karlo2105 is offline
Senior Member
 
Join Date: Sep 2011
Posts: 318
karlo2105 is on a distinguished road
Default

Re: streami.tv - How to watch live with rtmpdump


Quote:
Originally Posted by chap View Post
nullacht

how do you calculate this data?Thanks.
Quote:
Softwares required : curl, openssl, flasm
Command :
1. Download SWF player
curl -x "http://www.player.swf" -o "player.swf"

2. Decompress SWF player, it gives you SWFSize in bytes
flasm -x "player.swf"

3. Generate the hash, it gives you SWFHash
openssl sha -sha256 -hmac "Genuine Adobe Flash Player 001" "player.swf"
SWFSize is used in RTMPdump with -x parameter and SWFHash with -w parameter.
Reply With Quote
  #19  
Old 10-10-2011, 06:51 AM
evol evol is offline
Senior Member
 
Join Date: Jun 2011
Posts: 228
evol is on a distinguished road
Lightbulb

Re: streami.tv - How to watch live with rtmpdump


Here ill make it easier for windows users download curl, openssl, flasm

Everything goes in your Windows Folder apart from crap(textfiles, weblinks etc...). Now open your CMD prompt and test there working correctly
Code:
curl --help
openssl --help
flasm --help
Reply With Quote
  #20  
Old 10-13-2011, 02:17 AM
buksnatata buksnatata is offline
Junior Member
 
Join Date: Oct 2011
Location: Serbia
Posts: 17
buksnatata is on a distinguished road
Default

Re: streami.tv - How to watch live with rtmpdump


Hello everyone
Can someone make a little tutorial for windows users where to download RTMPdump 2.4 and what software we need for this thanks in advance
Reply With Quote
Reply Post New Thread
Tags: , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 03:57 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons