0 purchases
streamserver 0.4.0
Multipart Image HTTP Streaming Server.
Install:
pip install git+ssh://[email protected]:7999/~soren.rasmussen/streamserver.git
or
pip install streamserver
Example:
import cv2
import streamserver
cap = cv2.VideoCapture(0)
ret,_ = cap.read()
assert ret == True
with streamserver.StreamServer(JPEG_quality=75,host='localhost',port=5000) as ss:
while cap.isOpened():
ret,frame = cap.read()
ss.set_frame(frame)
wk = cv2.waitKey(20)
if wk == ord('q'):
break
cap.release()
or
ss-imageio
TODO:
Multiple streams on same server
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.