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
Last revisionBoth sides next revision
software:rtmpdump [2010/08/13 18:13] kratz00software:rtmpdump [2011/01/01 21:09] kratz00
Line 8: Line 8:
 <code> <code>
 make install prefix=/usr</code> make install prefix=/usr</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.txt · Last modified: 2012/07/28 23:32 by kratz00