Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sukhbinder/screenrecord
Record screen with python.
https://github.com/sukhbinder/screenrecord
Last synced: 2 days ago
JSON representation
Record screen with python.
- Host: GitHub
- URL: https://github.com/sukhbinder/screenrecord
- Owner: sukhbinder
- Created: 2020-05-12T19:37:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-10T08:45:04.000Z (almost 4 years ago)
- Last Synced: 2024-02-24T16:04:16.584Z (11 months ago)
- Language: Python
- Size: 1.22 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SCREENRECORD
Record screen with python.```bash
C:\Users\singhs>record usage.gif --bbox 10 10 1000 450 -d 0.1
```# Usage
![usage screenshot for screenrecod with python](https://raw.githubusercontent.com/sukhbinder/screenrecord/master/img/usage.gif)## Command line arguments
```python
usage: record [-h] [-i INITDELAY] [-d DELAY] [-dur DURATION]
[--bbox BBOX [BBOX ...]] [-f]
filenameScreen Recording with python
positional arguments:
filename filename can be mp4 or gif or movoptional arguments:
-h, --help show this help message and exit
-i INITDELAY, --initdelay INITDELAY
Initial delay in seconds, default 5 s
-d DELAY, --delay DELAY
Delay between frames in seconds, default 0.5 s
-dur DURATION, --duration DURATION
Duration of capture
--bbox BBOX [BBOX ...]
Bounding box, default (0, 0, 800, 400)
-f, --fullscreen```
# Install```python
pip install screenrecord```
or```python
git clone this_repo
cd to/the/repo
pip install -e .
```