streamserver 0.4.0

Creator: bradpython12

Last updated:

0 purchases

TODO
Add to Cart

Description:

streamserver 0.4.0

Multipart Image HTTP Streaming Server.
Install:
pip install git+ssh://git@bitbucket-server.alexandra.dk: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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.