
Security News
CISA Rebuffs Funding Concerns as CVE Foundation Draws Criticism
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
An easy and efficient way to connect to one or more cameras and record synchronized videos 💀📸
Connecting to cameras on multiple platforms in a way that is not slow is a difficult challenge, especially for new developers.
There are a bunch of tools out there (e.g. OpenCV) and other open source libraries that give just enough to support hardware manipulation, but they need to be use in concert in order to be useful.
This library attempts to string those things together, and provide an interface for everyone to use in python with a simple pip install
.
The primary focus is to provide an easy method to connect to one or more cameras and provide methods for streaming/recordig synchronized frames from the connected cameras.
NOTE - The SkellyCam package is the primary camera backend for the
freemocap
markeless motion capture software 💀✨
python
virtual environment activate)Enter the command below and press 'Enter'
pip install skellycam
Enter the command below and press 'Enter'
skellycam
Hopefully a bunch of text scrolled by and a GUI popped up!
If not, please open an issue on the github repo and we'll try to help you out :)
opencv
to connect to cameras, so it won't recognize hardware that can't be connected with cv2.VideoCapture
- Support for other camera hardware (e.g. FLIR) coming soonskellycam
Windows Python3 Installation Guide
MacOSX Python3 Installation Guide
Linux Python3 Installation Guide
Launch the GUI by running skellycam
in a terminal.
This is currently the most tested method for interacting with the cameras.
In this example, we connect a camera at index 0. Calling show
allows us to view the cameras frames allowing us
to see video.
NOTE - Work in progress, no clean way to kill this window yet
from skellycam import CameraConfig, Camera
if __name__ == "__main__":
cam1 = Camera(CameraConfig(cam_id=0))
cam1.connect()
cam1.show()
NOTE - Experimental and under development, might be unstable
from skellycam.experiments import MultiCameraVideoRecorder
if __name__ == "__main__":
synchronized_video_recorder = MultiCameraVideoRecorder()
synchronized_video_recorder.run()
Please read our contribution doc: CONTRIBUTING.md
This project is licensed under the APGL License - see the LICENSE file for details.
If the AGPL does not work for your needs, we are happy to discuss terms to license this software to you with a different agreement at a price point that increases exponentially as you move spiritually away from the AGPL
FAQs
Top-level package for skellycam.
We found that skellycam demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.