Sending and receiving messages from Kurento's datachannelHow do I remove a property from a JavaScript object?Get selected text from a drop-down list (select box) using jQueryHow do I remove a particular element from an array in JavaScript?How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)How to Send text messages browser to browser in webrtc?How do I return the response from an asynchronous call?Can I use the same WebRTC channel for audio/video and file transfer?RTCPeerConnection.createOffer “promise” usageWebRTC DataChannel: working in Firefox but not ChromeFailed to execute 'send'': RTCDataChannel.readyState is not 'open'
Submitting a new paper just after another was accepted by the same journal
How to divide item stack in MC PE?
Why isn’t SHA-3 in wider use?
Simplification of numbers
How are you supposed to know the strumming pattern for a song from the "chord sheet music"?
Super Duper Vdd stiffening required on 555 timer, what is the best way?
Is this curved text blend possible in Illustrator?
How do some PhD students get 10+ papers? Is that what I need for landing good faculty position?
Can anybody explain why using multicolumn changes the width of the four-column tabular environment?
Voltage across a resistor
Is it feasible to get a hash collision for CRC32, MD-5 and SHA-1 on one file?
How to write hyperlinks to local files in GeoJSON properties?
A continuous water "planet" ring around a star
How can God warn people of the upcoming rapture without disrupting society?
How far did Gandalf and the Balrog drop from the bridge in Moria?
These were just lying around
Can a PC use the Levitate spell to avoid movement speed reduction from exhaustion?
Do I have to cite common CS algorithms?
Breadcrumb history decision
If "more guns less crime", how do gun advocates explain that the EU has less crime than the US?
Is it okay for a ticket seller in the USA to refuse to give you your change, keep it for themselves and claim it's a tip?
Heat equation: Squiggly lines
A torrent of foreign terms
A Non Math Puzzle. What is the middle number?
Sending and receiving messages from Kurento's datachannel
How do I remove a property from a JavaScript object?Get selected text from a drop-down list (select box) using jQueryHow do I remove a particular element from an array in JavaScript?How do I completely uninstall Node.js, and reinstall from beginning (Mac OS X)How to Send text messages browser to browser in webrtc?How do I return the response from an asynchronous call?Can I use the same WebRTC channel for audio/video and file transfer?RTCPeerConnection.createOffer “promise” usageWebRTC DataChannel: working in Firefox but not ChromeFailed to execute 'send'': RTCDataChannel.readyState is not 'open'
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am new to Kurent, by adapting the code I found from an example I am not able to see the message send. Here is some of my code:
peerConnection = new RTCPeerConnection(config);
dataChannel = peerConn.createDataChannel(participant.id, reliable: false);
dataChannel.onmessage = channelMessage
var options =
peerConnection : peerConnection,
localVideo: video,
mediaConstraints: constraints,
onicecandidate: participant.onIceCandidate.bind(participant)
participant.rtcPeer = new kurentoUtils.WebRtcPeer.WebRtcPeerSendrecv(options, //WebRtcPeerSendonly
function (error)
if(error)
return console.error(error);
this.generateOffer(participant.offerToReceiveVideo.bind(participant));
);
function channelMessage(event)
console.log(event)
javascript node.js webrtc kurento rtcdatachannel
add a comment |
I am new to Kurent, by adapting the code I found from an example I am not able to see the message send. Here is some of my code:
peerConnection = new RTCPeerConnection(config);
dataChannel = peerConn.createDataChannel(participant.id, reliable: false);
dataChannel.onmessage = channelMessage
var options =
peerConnection : peerConnection,
localVideo: video,
mediaConstraints: constraints,
onicecandidate: participant.onIceCandidate.bind(participant)
participant.rtcPeer = new kurentoUtils.WebRtcPeer.WebRtcPeerSendrecv(options, //WebRtcPeerSendonly
function (error)
if(error)
return console.error(error);
this.generateOffer(participant.offerToReceiveVideo.bind(participant));
);
function channelMessage(event)
console.log(event)
javascript node.js webrtc kurento rtcdatachannel
add a comment |
I am new to Kurent, by adapting the code I found from an example I am not able to see the message send. Here is some of my code:
peerConnection = new RTCPeerConnection(config);
dataChannel = peerConn.createDataChannel(participant.id, reliable: false);
dataChannel.onmessage = channelMessage
var options =
peerConnection : peerConnection,
localVideo: video,
mediaConstraints: constraints,
onicecandidate: participant.onIceCandidate.bind(participant)
participant.rtcPeer = new kurentoUtils.WebRtcPeer.WebRtcPeerSendrecv(options, //WebRtcPeerSendonly
function (error)
if(error)
return console.error(error);
this.generateOffer(participant.offerToReceiveVideo.bind(participant));
);
function channelMessage(event)
console.log(event)
javascript node.js webrtc kurento rtcdatachannel
I am new to Kurent, by adapting the code I found from an example I am not able to see the message send. Here is some of my code:
peerConnection = new RTCPeerConnection(config);
dataChannel = peerConn.createDataChannel(participant.id, reliable: false);
dataChannel.onmessage = channelMessage
var options =
peerConnection : peerConnection,
localVideo: video,
mediaConstraints: constraints,
onicecandidate: participant.onIceCandidate.bind(participant)
participant.rtcPeer = new kurentoUtils.WebRtcPeer.WebRtcPeerSendrecv(options, //WebRtcPeerSendonly
function (error)
if(error)
return console.error(error);
this.generateOffer(participant.offerToReceiveVideo.bind(participant));
);
function channelMessage(event)
console.log(event)
javascript node.js webrtc kurento rtcdatachannel
javascript node.js webrtc kurento rtcdatachannel
edited Mar 27 at 9:18
carlATR
asked Mar 27 at 8:57
carlATRcarlATR
519 bronze badges
519 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373199%2fsending-and-receiving-messages-from-kurentos-datachannel%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373199%2fsending-and-receiving-messages-from-kurentos-datachannel%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown