Friday, June 14, 2013

Recording VNC session

Recording VNC session

  1. sudo apt-get install python-setuptools
  2. sudo apt-get install python-dev
  3. sudo easy_install vnc2flv
  4. sudo apt-get install vlc
  5. Create ~/vnc/passwd (text file) with the clear text password
  6. flvrec.py -P ~/vnc/passwd <IP>
In Ubuntu, stop recording by sending SIGINT, like kill -s SIGINT 7705.
Where 7705 is the process ID of the python flvrec.py run.

No comments:

QNX: Running a function at specific interval using timer interrupt

#include <iostream> #include <csignal> #include <ctime> #include <cerrno> #include <cstring> #include <unis...