![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A Python package for controlling PTZ (Pan-Tilt-Zoom) cameras through various protocols. Currently supports Avkans cameras, VISCA, and VISCA over UDP.
Install using pip:
pip install peateazea
Or install from source:
git clone https://github.com/benbaptist/peateazea.git
cd peateazea
pip install -e .
requests
visca-over-ip
from peateazea import Avkans, Visca, ViscaUDP
# For Avkans cameras
camera = Avkans("192.168.1.100", 80, username="admin", password="password")
# For VISCA over TCP
camera = Visca("192.168.1.100", 1259)
# For VISCA over UDP
camera = ViscaUDP("192.168.1.100", 52381)
# Basic controls
camera.pantilt(-12, 0) # Pan left
camera.pantilt(12, 0) # Pan right
camera.pantilt(0, -12) # Tilt up
camera.pantilt(0, 12) # Tilt down
camera.zoom(7) # Zoom in
camera.zoom(-7) # Zoom out
camera.stop() # Stop all movement
camera.home() # Return to home position
# Recall preset position
camera.recall_preset(1)
MIT License
Contributions are welcome! Please feel free to submit a Pull Request.
FAQs
A Python package for controlling PTZ cameras through various protocols
We found that peateazea 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.