Programatically video record a window as a context manager
Project description
Installation
This only works on Linux systems. You should have xwininfo
installed by default.
pip install window-recorder
If the above does not work (OpenCV can be finicky), then you can install the dependencies manually.
Install opencv
and mss
as dependencies (recommended with conda):
conda install opencv
conda install -c conda-forge python-mss
Then clone this repository anywhere and install locally with
pip install -e .
Usage
The WindowRecorder
class comes as a context manager.
You pass in a list of window names to record and it will try to find them
in the order given, recording the first one with a valid window configuration.
If you pass in None as the first argument, then instead it will prompt you
to click on a window (cursor turns into a cross and blocks until you click).
The video will start and end recording according to the life cycle of the context manager.
from window_recorder import WindowRecorder
import time
# passing in nothing as the window name will allow you to select the window by clicking
# want to capture an RViz window, which could have name "RViz*" as well
with WindowRecorder(["RViz*", "RViz"], frame_rate=30.0, name_suffix="rviz"):
# do things...
time.sleep(0.1)
start = time.time()
while time.time() - start < 2:
time.sleep(0.1)
You can test it out with scripts/text.py
which will prompt you to
click a window that it will then record for 2 seconds
(see the log for the default location the video will be saved to)
To not record, a record=False
argument can be passed to the constructor for better convenience than unindenting the block
and not using the context manager.
from window_recorder import WindowRecorder
import time
with WindowRecorder(["RViz*", "RViz"], frame_rate=30.0, name_suffix="rviz", record=False):
# will not record; the arguments above also won't be checked and you won't be asked to click a window
time.sleep(0.1)
start = time.time()
while time.time() - start < 2:
time.sleep(0.1)
Limitations
The original location of the window will be what is actually recorded, so if you move the window during the recording or another window comes in front of it, that will also be recorded.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file window_recorder-0.3.0.tar.gz
.
File metadata
- Download URL: window_recorder-0.3.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | daaf014103767669ec49775b64ebea44e7f219502d3ffc9cf659b7868bf93f59 |
|
MD5 | 56fe9ed33aebd5d35c9c5b979b189944 |
|
BLAKE2b-256 | a266e34f5f8ec57ec1da3eec33ab64aa3bdc917e4cb973d8caa47233b6e7860e |
File details
Details for the file window_recorder-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: window_recorder-0.3.0-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c63186937d1edbeffc9d5234d7c487b2dc6d592848dbbe51cd73085ab1a18e96 |
|
MD5 | 1489ace390ad68d34f01cba7e4f0d14e |
|
BLAKE2b-256 | 6e7d80ea6d483c736ee90bc276396197c329b1189cd773f95a9e000735e461b5 |