A very simple library built for streaming video from a remote Raspberry Pi server in realtime.
Project description
RaspiCameraLivestream
A very simple library built for streaming video from a remote Raspberry Pi server in realtime.
How to install:
MacOS or linux:
Open your terminal and type:
sudo python -m pip install rpistream
Windows:
Open cmd as admin and type:
pip install rpistream
Examples:
Streaming from a webcam
Server
from rpistream.camera import Camera from rpistream.streamserver import Server def retrieveImage(cam,imgResize): image = cv2.resize(cam.image,(0,0),fx=imgResize,fy=imgResize) return image cam = Camera(mirror=True) scale=0.5 server = Server(port=5000) server.serve() # Blocking; waits for a connection before continuing server.startStream(retrieveImage,[cam,scale]) # Calls retrieveImage(*args) every frame
Client
from rpistream.streamclient import Client client = Client(serverIp="localhost", WriteFile=True) # Connects to the server client.startStream() # Starts recieving data and displaying the video
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
rpistream-0.2.2.tar.gz
(5.7 kB
view hashes)
Built Distribution
Close
Hashes for rpistream-0.2.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a556f2bb62046d96ab6d6f86150e4ac4851f4dfaf3f49327c8df23bb19c4f2cf |
|
MD5 | 1390facc78e1e4d70906225599a14683 |
|
BLAKE2-256 | afcb39f5a819910395a0ed0d8949bbb4d4d35ac2fa005972f898e8d73e2f3aad |