Questions tagged [easyrtc]

EasyRTC is a full-stack open source WebRTC toolkit suitable for building highly secure, WebRTC applications. It is a bundle of web applications, code snippets, client libraries and server components written and documented to work right out of the box.

EasyRTC is a WebRTC library for NodeJS and client-side JavaScript. Its API provides uniform access to Firefox and Chrome's WebRTC capabilities. It comes with a signalling server that uses [socket.io]. It is free/open source and licensed under the MIT license.

77 questions
0
votes
2 answers

Black frames when using easyrtc with socket.io

we use EasyRTC for sending image captures from iPad (we create screenshots "manually" and send them via socket.io) to web browser. On the server we have EasyRTC v.1.0.12 and Socket.IO v.0.9.16. It's hard to say what happened (i've just joined the…
krzysiek
  • 187
  • 4
  • 15
0
votes
1 answer

Easyrtc data exchange through websockets

Think I must be missing something, but I don't have the debug capability to check. Web app passes data to node.js server through socket.io, but doesn't emit anything back. server.js // Load required modules var http = require("http"); …
0
votes
3 answers

I have a TURN server, but what do I lack ?

I am building a WebRTC videoconferencing service for iOS and Web. We have so far used tokBox, they deliver the whole package (client API (ios and web) + TURN server. Their solution also takes care of generating tokens and session ID etc. But we…
KML
  • 2,302
  • 5
  • 26
  • 47
0
votes
0 answers

how to detect headphone and cam in recordrtc

How to detect headphone and cam when calling start recording function in recordRTC liabrary. btnStartRecording.onclick = function() { btnStartRecording.disabled = true; captureUserMedia(function(stream) { mediaStream = stream; …
Mustafa bw
  • 1,290
  • 3
  • 12
  • 21
0
votes
0 answers

How should I clear media after disconnecting video call using easyrtc api functions?

I am using this function: easyrtc.setOnStreamClosed( function (callerEasyrtcid) { easyrtc.setVideoObjectSrc(document.getElementById('caller'),""); }); but it is not working..
umeshWeb
  • 53
  • 8
0
votes
1 answer

EasyRTC works only inside same LAN (ICE failed)

The problem is that the remote video can seen only if two computers are in same LAN Environment, namely from different ip's the remote video not seen and in the js console I get error ICE failed, see about:webrtc for more details. I'm trying to…
Sevi
  • 863
  • 4
  • 15
  • 33
0
votes
1 answer

How to connect two users directly using WebRTC

I have this code that creates a button for every user that is logged into my WebRTC page. When clicked this button allows two users to view each other (VideoChat). function connect() { easyrtc.setVideoDims(720,720); …
J_Strauton
  • 2,270
  • 3
  • 28
  • 70
0
votes
1 answer

Where is the Configure function for the Express module in EasyRTC

I'm new to NodeJS and maybe I'm putting the cart before the horse here, but I am attempting to run the demo of EasyRTC using NodeJS. The EasyRTC download page has an "easy install instructions" list of actions to perform to run EasyRTC out of the…
Guy Passy
  • 694
  • 1
  • 9
  • 32
0
votes
1 answer

CSS is not loading in easyrtc application on node.js

I've some css issues in my easyrtc application, Here is my physical file structure project login css style.css js script.css login.html logout.html node_modules static server.js package.json In the server.js I've…
Jedi Dula
  • 63
  • 1
  • 10
0
votes
1 answer

How do I check custom TURN server is working with easyRTC

I am working on an application for Audio/Video calls using easyrtc. I have added turn server details in server.js file to configure the turn servers I want to use. var myIceServers = [ {url: "stun:stun.anyfirewall.com:3478"}, {url:…
Mandar Pandit
  • 2,171
  • 5
  • 36
  • 58
0
votes
1 answer

Node.JS + Passport + MySQL + EasyRTC authentication

As mentioned in the title i'm working with Node.js + Passport.JS and MySQL.js. All are installed and are working properly for the most part but i'm running into a few problems that I can't figure out. My profile.ejs page has access to the user.x…
0
votes
1 answer

EasyRTC General authentication error

I'm trying to do Video Call/Conferance app in NodeJs. When I enter the node page Im getting this error message.
Can
  • 372
  • 1
  • 3
  • 17
0
votes
1 answer

node js easy rtc connection use https

i use easyrtc EasyRtc Github I use IFRAME streaming load my web page PHP. Everything was fine when my site was protocol HTTP. Now I changed the HTTP connection to HTTPS, connection beginning not to work. Node js installed on the same server, I…
styopdev
  • 2,604
  • 4
  • 34
  • 55
0
votes
1 answer

dart proxy for easyrtc: type 'JsObject' is not a subtype of type 'JsFunction'

I'm experimenting some with easyrtc using dart. Following this the file would be something like this: import 'dart:html'; import 'package:js/js.dart' as js; var selfEasyrtcid = ""; var easyrtc; void main() { easyrtc = new…
XD face me
  • 578
  • 1
  • 3
  • 12
-1
votes
1 answer

EasyRTC - How to allow automatically user media permission

When easyrtc connect in browser appear permission to active webcam and microphone, my question is how to set allow automatically user media permission every single browser ?
Trisna
  • 385
  • 1
  • 5
  • 15