Skip to content

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

License

Notifications You must be signed in to change notification settings

aivclab/streamserver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 

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?