User Tools

Site Tools


software:rtmpdump

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:rtmpdump [2010/08/13 18:13] kratz00software:rtmpdump [2012/07/28 23:32] (current) kratz00
Line 7: Line 7:
  
 <code> <code>
-make install prefix=/usr</code>+make install prefix=/usr libdir=/usr/lib64</code> 
 + 
 +== Usage == 
 + 
 +  * redirect outgoing RTMP traffic to localhost: 
 +<code> 
 +iptables -t nat -A OUTPUT -p tcp --dport 1935 -j REDIRECT 
 +</code> 
 + 
 +  * run //rtmpsrv//: 
 +<code> 
 +rtmpsrv 
 +</code> 
 + 
 +  * browse the page containing media streamed over RTMP 
 +  * //rtmpsrv// will output an //rtmpdump// command that can be used to download videos 
 +  * stop //rtmpsrv// with CTRL-C 
 +  * remove the RTMP traffic redirection: 
 +<code> 
 +iptables -t nat -D OUTPUT -p tcp --dport 1935 -j REDIRECT 
 +</code> 
 +  * run the //rtpmdump// command from the //rtmpsrv// output to download the video 
 + 
software/rtmpdump.1281716019.txt.gz · Last modified: 2010/08/13 18:13 by kratz00