Video streaming with websockets? #8201
-
|
Is it possible to do video streaming using websockets and FastAPI? I've been looking in starlette for an object like Response in flask but couldnt find one. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
|
@elferherrera |
Beta Was this translation helpful? Give feedback.
-
|
@elferherrera - please close this if your question is answered. cc. @tiangolo to close if no response from user |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the help @arsspot ! Yes @elferherrera , you can use https://www.starlette.io/responses/#streamingresponse, it takes an iterable object and sends the response as a stream. |
Beta Was this translation helpful? Give feedback.
-
|
Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues. |
Beta Was this translation helpful? Give feedback.
Thanks for the help @arsspot ! Yes @elferherrera , you can use https://www.starlette.io/responses/#streamingresponse, it takes an iterable object and sends the response as a stream.