Python screen recorder

Is there a library for creating a screen recorder app in python? I think it would be fun to do something like that. but a library that will work with linux im using ubuntu

Thanks!

+4
source share
2 answers

I do not know the mechanism for writing on the screen in Python. However, you can use Python to control one of many existing screen recorders:

  • recorditnow
  • RecordMyDesktop
  • byzanz
  • Istanbul
  • vnc2swf
  • pyvnc2swf
+1
source

recordscreen.py is a command line shell for avconv (formerly for ffmpeg ) a tool for capturing / converting videos. Implementing this in pure Python will be too slow, but you can always create useful bindings for these tools or improve existing ones like AVBin .

0
source

Source: https://habr.com/ru/post/1380510/


All Articles