Package com.kurento.kmf.media

Examples of com.kurento.kmf.media.RtpEndpoint.processOffer()


        + "a=rtpmap:96 H264/90000\r\n"
        + "a=rtpmap:97 MP4V-ES/90000\r\n"
        + "a=rtpmap:98 H263-1998/90000\r\n" + "a=recvonly\r\n"
        + "b=AS:384\r\n";

    rtpEndpoint.processOffer(requestSdp);
    player.connect(rtpEndpoint, MediaType.VIDEO);
    player.play();

    // just a little bit of time before destroying
    Thread.sleep(2000);
View Full Code Here


    rtp.generateOffer(asyncGenerateOffer.getContinuation());
    asyncGenerateOffer.waitForResult();

    AsyncResultManager<String> asyncProcessOffer = new AsyncResultManager<>(
        "rtp.generateOffer() invocation");
    rtp.processOffer("processOffer test",
        asyncProcessOffer.getContinuation());
    asyncProcessOffer.waitForResult();

    AsyncResultManager<String> asyncProcessAnswer = new AsyncResultManager<>(
        "rtp.processAnswer() invocation");
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.