5

I want to send 2 media streams to the webrtc peer. I am using kurento media server and kurento client API's. Kurento client APIs allows me to set options before creating webRTC peer connection. where we can specify local stream to be sent to the client.

It does not provide a way to send multiple streams from one client. I tried to add tracks from one stream to another and then send the stream. But when I do that media server crashes.

Is there any way I can achieve this?

piyush
  • 868
  • 13
  • 29

1 Answers1

4

Multistream is not yet supported in the WebRtcEndpoint from Kurento.

igracia
  • 3,543
  • 1
  • 18
  • 23
  • Thanks a lot for replying: I have been waiting for your reply :) Is there any other way i can achieve this. I have posted the secenario in kurento mailing list too. My goal is to have to 2 streams from one client to the different peers. say one stream from client1 to client2 and another from client1 to client3.. – piyush Jul 11 '16 at 08:22
  • @piyush You need to have two separate connections in client1 – igracia Aug 01 '16 at 10:53
  • 2
    @igracia are there any recent updates about this feature? – Akshay Kasar May 08 '17 at 05:48
  • @igracia Is there any recent update about this feature about multistream? – saurav Feb 20 '20 at 17:41
  • @saurav not that I know of. You might want to reach out to the project mailing list. – igracia Apr 29 '20 at 09:16
  • 1
    @igracia Thank you for your response. Solved the problem by using two separate connections as suggested by you above as I was not sure if kms will be able to handle unified plan at the webRtcEnd Point level even if I make changes to the kurentoutils node module. – saurav Apr 29 '20 at 13:31