-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WebRTC - Help for Understanding #1260
Comments
I apologize for the late response @Ben93kie... just back from a short holiday. re: "send out the video stream and the synchronized metadata (bboxes) via WebRTC" Are you wanting to send the metadata as message data through the WebRTC data channel? Or do you just which to add the bboxes and labels to the video for visualization with the On-Screen-Display and send the augmented video to the client via WebRTC? Just FYI, the WebRTC implementation is based on what little information and examples I could find... and currently supports encoded video only. The data channel is unused. |
Thanks for your response! Could you point me in the right direction maybe? |
I believe some users are streaming the video using an RTMP sink and the Metadata using a Message Sink ... streaming both to something like a media server. If you can do your visualization work in the media server, then clients can connect to the server using WebRTC or other protocols. Using the WebRTC Sink and data channel to send the metadata is something I would need to research and develop. |
Nice thx! |
Hi!
Recently stumbled across your repo, looks impressive!
However, I'm a bit unsure whether it serves my goal. I'd like to have a live-feed fed into Deepstream, primary inference, and then send out the video stream and the synchronized metadata (bboxes) via WebRTC to a browser (single client would be fine).
I've seen the WebRTC sink
https://github.com/prominenceai/deepstream-services-library/blob/master/docs/api-sink.md#dsl_sink_webrtc_new
and
https://github.com/prominenceai/deepstream-services-library/blob/master/examples/python/1file_webrtc_connect_post_play.py
but I'm not sure if that's doing what I'd like to have. Could you point me in the right direction?
Thank you!
The text was updated successfully, but these errors were encountered: