View Single Post
  #165  
Old 12-24-2013, 03:26 AM
gorilla.maguila gorilla.maguila is offline
Member
 
Join Date: Dec 2012
Posts: 62
gorilla.maguila is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Recently a user asked me how to dump a stream on:

http://beta.ddoss.me/pay_tv.php

So in case anyone is interested to make it work some lines need to be added to rtmp.c:

Code:
else if (strstr(pageUrl, "ddoss.me"))
{
     SendCommand(r, "r", FALSE);
     RTMP_SendCreateStream(r);
     SendGetStreamLength(r);
}
Then a simple rtmpdump command works:

Code:
rtmpdump -r rtmp://pc3oot.us.to:1935/live  -p http://beta.ddoss.me/pay_tv.php -W http://ni208114_1.vweb03.nitrado.net/playr.swf -y action

Last edited by gorilla.maguila : 12-24-2013 at 07:56 AM.
Reply With Quote