Questions tagged [kurento-media-server]

23 questions
4
votes
0 answers

Problem show video with kurento media server running in docker

Description: I am building a video call app via web browser, a simple version of Googlemeet. I use WebRTC, Kurento, React Frontend, Express Backend, Socket.io Signaling Server My code to connect kurento server: const io = new socketIO.Server(server,…
2
votes
0 answers

Cannot get remote stream when use Kurento Utils

I have a video-call-chat website using WebRTC. I built it with express, socket.io and kurento. Specifically, I run kurento server at port 8888: docker run -d -p 8888:8888 kurento/kurento-media-server:6.6.0 and I use Kurento Utils JS in client for:…
Dat Dang
  • 150
  • 4
1
vote
0 answers

kurento-client npm not working, tried other versions

Im trying to npm kurento-client, i have even dropped the versions to install using npm but still no luck. Here is my package.json file: { "name": "fidb", "version": "1.0.0", "description": "kurento-one2many-call =====================", …
redoc01
  • 2,107
  • 5
  • 32
  • 64
1
vote
0 answers

kurento Server Still Send Media stream to disconnect Viewer endpoint when chrome refresh webpage

In One player to many viewer structure, if on viewer's web socket is closed when refreshing browser , KMS server monitor still have stream sending to the viewer IP. How could I correct to disconnect viewer endpoint to the Sender player?
lokcyi
  • 33
  • 6
1
vote
0 answers

Is there a way to see how Kurento elements are connected?

I'm debugging my application using Kurento and need to check if MediaElements in a MediaPipeline are connected as I expected. Is there any way to tell how elements are connected to each other on the server side? Thanks, DK
DK Moon
  • 43
  • 1
  • 3
1
vote
1 answer

Merging the canvas stream with getUserMedia's audio stream is not audible (kurento/webrtc)

When the user does not have a video device, I'm using the canvas video stream and merging the video track with the stream obtained from getUserMedia(audio stream). Peer connects perfectly but other users are unable to hear the audio. If I share my…
1
vote
0 answers

How to change kurento composite layout?

Kurento composite component combines all the input streams into a grid and output that grid. How can I change the output layout? Is it possible to combine videos stack up against each other?
Jahan
  • 363
  • 6
  • 16
1
vote
1 answer

Create Kurento RTP Receiver in Node.JS

I am trying to create Kurento RTP receiver in node.js. I'm using the below github repo for the reference: kurento-rtpendpoint The example given on Kurento's website is in Java kurento-rtp-receiver. My requirement is to create RTP Receiver in…
0
votes
0 answers

openvidu connecting from an external network, only the video is not output

using openvidu 2.9.0 It seems like you have OpenVidu installed on a Hyper-V virtual machine with a public IP, and port forwarding is set up. However, when someone connects to the video conference from an external IP, their video doesn’t show up.…
0
votes
0 answers

Unable to see remote stream of second user when joining a room in WebRTC video call application using Node.js, WebSocket, and Kurento Media Server

I am a beginner in WebRTC and currently working on developing a video call application with features like recording, screen sharing, and one-to-many communication. To implement this, I am using Node.js, WebSocket, and Kurento Media Server. I have…
VP Sing
  • 1
  • 1
0
votes
0 answers

i am trying to make my ipcamera stream over webrtc usingnodejs and kurento media server

i am new at webrtc and rtsp, while trying to make a project on webrtc i came to a halt in my code and after weeks of online search adn usng chatgpt am still not able to resolve my problem. I want to stream my ipcamera to webrtc but the code is not…
vishnu nair
  • 3
  • 1
  • 4
0
votes
0 answers

Does kurento media server support RTMP streaming?

I want to send an RTMP stream from an encoder to kurento media server and from kurento to webRTC endpoint. Is it possible to send RTMP stream to kurento? I have gone through the kurento documentation but couldn't find anything helpful regarding RTMP…
MI Sabic
  • 367
  • 2
  • 7
  • 18
0
votes
0 answers

how to save session infos with room Id in redis, spring boot, kurento?

I want to implement scalable signaling server. I use kurento client, kurento media server to implement N:M group call with spring boot signaling server. I understand the tutorial docs, and checked it works well. However, I have to consider scale-out…
Foo
  • 1
0
votes
0 answers

How can i get remote streams on react-native-webrtc from a Kurento Media Server

I am trying to connect a Kurento Media Server to React Native on iOS for a group video call. The server is running on Nodejs and Docker, and they already have a TURN server set up. The app is already running in the web browser via kurento-utils, but…
0
votes
1 answer

Kurento JavaScript Client- Cannot Create RecorderEndpoint

I am creating a RecorderEndpoint for my project using Kurento Javascript Client library. I have distilled the issue to something as basic as below. var kurento = require('kurento-client'); var ws_uri= "ws://localhost:8888/kurento"; var…
1
2