sunthan
sunthan

Reputation: 1

How to use Icelink stream audio to kurento and test Kurento get audio stream?

I use Icelink Conference for streaming audio to kurento. How to test kurento gets audio stream? I develop c#Icelink webrtc for stream audio to Kurento server like this.

     Sender = new FM.IceLink.Conference([Kurento IP], 8888, new Stream[]
        {
             audioStream_sender,
        });

Upvotes: 0

Views: 389

Answers (1)

igracia
igracia

Reputation: 3541

I don't know how IceLink works, but I'm sure that what you are doing doesn't do what you think it does. Basically, you'll need to have a WebRTC endpoint from IceLink, negotiate a connection with a WebRTC endpoint from Kurento. WebRTC negotiation implies exchanging SDPs and ICE candidates, which you will have to send between the two servers.

I'm afraid that since there is no C# library for signalling Kurento, you'll either have to use the protocol raw, or create a small server app based in the Java or JS clients.

Upvotes: 0

Related Questions