Package com.kurento.kmf.media

Examples of com.kurento.kmf.media.HubPort.connect()


    // Media Logic
    WebRtcEndpoint webRtcEndpoint = room.getPipeline().newWebRtcEndpoint()
        .build();
    HubPort port = room.getComposite().newHubPort().build();
    webRtcEndpoint.connect(port);
    port.connect(webRtcEndpoint);
    room.joinParticipant(session, webRtcEndpoint, port);

    // SDP Answer
    String sdpAnswer = webRtcEndpoint.processOffer(sdpOffer);
    JsonObject scParams = new JsonObject();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.