how to capture flash, etc

Michael Cronenworth mike at cchtml.com
Fri May 25 20:18:14 UTC 2012


Mike Wright wrote:
> Does anybody know how to capture a stream now or has that ability also
> been taken away?

Adobe obfuscated the /tmp file method several updates ago. The flash
plugin still creates a /tmp file, but it immediately removes the file
link causing any "ls /tmp" calls to not see a file. You can still get
the file data through /proc.

$ ps -ef | grep plugin
# copy the PID of flash ($PID)
$ ls -l /proc/$PID/fd
# find the /tmp/flashXXXXXX file symlink ($FD)
$ cp -p /proc/$PID/fd/$FD /home/foo/flash.flv


More information about the users mailing list