Skip to content

Latest commit

History

45 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Multipart Image HTTP Streaming Server.

Install:

pip install git+git://github.com/aivclab/streamserver.git

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()

TODO:

  • Multiple streams on same server?

About

Python library to stream images/video to a browser or a jupyter notebook

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages