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
1
vote
1 answer

Initialize on server side

I have created a Node Webkit application using SailsJS in back-end and AngularJS in front-end. I want to integrate audio-chat in my application using EasyRTC. I tried the demo application in my local. And it works fine. I am able to connect two…
1
vote
2 answers

easyRTC has bad audio in low bandwith in tablet with 3G internet

i create audio chat with easyRTC But it have noise and it work bad when I use tablet and 3g internet ! But in computer I work true ! How i can change audio quality in easyRTC ?
mohammad
  • 275
  • 3
  • 16
1
vote
0 answers

how to record video on server instead of browser using record rtc

Im building an application in which i have successfully implemented video chat functionality using easyrtc. Now what i want to do is record that video. I have done that as well by reading tutorials over the internet. But I'm able to record the…
1
vote
1 answer

Dynamic room creation using xirsys STUN and TURN

Xirsys STUN and TURN server requires registering of rooms within application else using default room name (created while defining app name). However, my requirement is to create a new room for each video/audio request, which in turn will be a…
1
vote
1 answer

GET /easyrtc/easyrtc.js 404 on express js 4

i have a 404 problem with EasyRTC on Express.js 4. The console said : GET /easyrtc/easyrtc.js 404 4.500 ms - 1077 and here's my app.js code : var express = require('express'); var path = require('path'); var favicon =…
mania25
  • 11
  • 3
1
vote
1 answer

EasyRTC Download Conversation

I'm developing video chat/conferance application on node.js.I want to download conversation from video chat/conference. How can I download EasyRTC Video Chat/Conference conversation? Is it possible? Thanks.
Can
  • 372
  • 1
  • 3
  • 17
1
vote
1 answer

how to resolve following easyrtc issue?

I've written following code: var http = require("http"); // http server core module var express = require("express"); // web framework external module var io = require("socket.io"); // web socket external…
1
vote
1 answer

Node.js How to Rewrite URL in server.js

I am using node.js with easyrtc and need to rewrite url or remove any url after slash please find my server.js var http = require("http"); var express = require("express"); var io = require("socket.io"); var easyrtc =…
user3084740
  • 21
  • 1
  • 7
0
votes
0 answers

Networked Aframe Keeps turning video and audio on for a brief moment

I'm trying to build a website with Networked Aframe. I'm using the easyRTC adapter, which allows for audio and video streaming. I am trying to have the user initially join the room without their video or audio on. I've tried to turn off video and…
piflyer
  • 17
  • 7
0
votes
0 answers

Multi connection in easyrtc making issue

I'm totally new to webRTC/easyRTC I'm facing issue that when new client is connecting to the room then sometimes client can't able to see other previously connected person. Can anyone have any idea what are the issues behind this.
Abhishek Kumar
  • 102
  • 2
  • 11
0
votes
1 answer

Why does my web socket call fail when server has a base url?

I am facing a strange problem. I have a express backend server. When I do not have a base URL for my backend, the ws calls are working fine: But, if I add a base URL ( for example, adding /api/ as part of the url ), my connections fail: This the…
codingsplash
  • 4,785
  • 12
  • 51
  • 90
0
votes
1 answer

How to change path of socket.io in socket.io.slim.js

I am using socket.io for multiuser experience in one of our metaverse projects. We have deployed the code in a https server and after deploying the multiuser experience collapsed. When check for errors, we have found the following error. enter image…
0
votes
0 answers

Can webRTC consume CPU utilization

I have created a multiplayer game that uses webRTC for communication. It sends 4.8 KB data every second. Can sending this data cause high CPU usage? I'm wanted to run the game in browser so i used electron just to run the game. But before any data…
0
votes
0 answers

p2p video recorder on nodejs from webpage

I need to receive a video stream directly on my nodejs server from a webpage, where the video is recorded. I saw different software but they all provides p2p from a webpage to another webpage. I need p2p from the webpage to the server. The web…
feof84
  • 119
  • 2
  • 5
0
votes
1 answer

WebRTC only works locally even after deploying to Heroku

WebRTC only works locally even after deploying to Heroku. I am using EasyRTC and their demo files from GitHub. All works great in localhost. I also deployed the files using Heroku, which also worked great locally (in LAN, same Wifi). But when I…
Deep Jain
  • 23
  • 4