
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
A python package for screen recording with customizable resolution, FPS, and mouse tracking.
Python screen recorder also pyscreenrecorder
is a powerful Python package for screen recording with an optional mouse cursor overlay.
It allows high-performance screen capturing, custom resolution, and real-time mouse tracking.
mss
for fast screen capture..mp4
, .avi
, and .mkv
.Install pyscreenrecorder
using pip:
pip install pyscreenrecorder
Upgrade pyscreenrecorder
using pip:
pip install pyscreenrecorder -U
from pyscreenrecorder import ScreenRecorder
ScreenRecorder(
filename="screen_record.mp4",
duration=10,
fps=30,
monitor_number=1,
mouse=True,
)
from pyscreenrecorder import pyScreenRecorder
monitors = pyScreenRecorder.list_monitors()
print("Available Monitors:", monitors)
Example Output:
[
{ "monitor": 0, "width": 1920, "height": 1080 },
{ "monitor": 1, "width": 2560, "height": 1440 }
]
from pyscreenrecorder import ScreenRecorder
ScreenRecorder(
filename="custom_record.mp4",
duration=15,
fps=60,
monitor_number=2,
resolution=(1280, 720), # Set custom resolution
mouse=True,
mouse_color=(255, 0, 0), # Red cursor
mouse_size=10,
mouse_thickness=3,
)
🔹 60 FPS Recording
🔹 Custom 1280x720 resolution
🔹 Red-colored mouse cursor with increased size
from pyscreenrecorder import pyScreenRecorder
if __name__ == "__main__":
# Display available monitors
monitors = pyScreenRecorder.list_monitors()
print("Available Monitors:", monitors)
# Start recording with advanced settings
pyRec = pyScreenRecorder(
filename="high_quality_record.mp4",
duration=30,
fps=60,
monitor_number=1,
resolution=(1920, 1080), # Full HD recording
mouse=True,
mouse_color=(0, 255, 0), # Green cursor
mouse_size=6,
mouse_thickness=2,
)
pyRec.screenRecorder()
pyscreenrecorder
supports the following video formats:
Format | Description |
---|---|
MP4 | High compatibility |
AVI | Uncompressed quality |
MKV | Modern, flexible |
Set the format by using the appropriate file extension in filename
.
Example:
ScreenRecorder(filename="recording.mkv")
pyscreenrecorder
relies on:
opencv-python
numpy
mss
pyautogui
MouseInfo
PyGetWindow
PyMsgBox
pyperclip
PyRect
PyScreeze
pytweening
No additional configuration is required.
This project is licensed under the MIT License.
📌 GitHub Repository:
🔗 https://github.com/SSujitX/pyscreenrecorder
📌 Issue Tracker:
🐛 Report a Bug
pyscreenrecorder
is an efficient, easy-to-use, and customizable screen recording tool in Python. Whether you need basic screen capturing or advanced mouse-tracked recordings, this package provides all the features.
🚀 Try it today! 🚀
FAQs
A python package for screen recording with customizable resolution, FPS, and mouse tracking.
We found that pyscreenrecorder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.