-
-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Closed
Labels
Description
Is it possible to do video streaming using websockets and FastAPI?
If not, is there a way to create an endpoint like this one created with flask?
@app.route('/video_feed')
def video_feed():
return Response(gen(Camera()),
mimetype='multipart/x-mixed-replace;
I've been looking in starlette for an object like Response in flask but couldnt find one.