Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aivclab/streamserver

Python library to stream images/video to a browser or a jupyter notebook
https://github.com/aivclab/streamserver

python streaming video

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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?