kurento

Kurento Helloworld mvncomplie error

安稳与你 提交于 2019-12-25 03:57:26
问题 I would like to run an application based on Kurento (the WebRTC MediaServer) according to this tutorial: http://www.kurento.org/docs/current/tutorials/java/tutorial-1-helloworld.html After running these pieces of codes: git clone https://github.com/Kurento/kurento-tutorial-java.git cd kurento-tutorial-java/kurento-hello-world git checkout 6.1.0 mvn compile exec:java In the last line, mvn compile exec:java , I encounter the following error: [INFO] Scanning for projects... [INFO] [INFO] -------

How to run background service for Instant Messaging using Kurento API in Oreo?

天涯浪子 提交于 2019-12-25 00:33:52
问题 Android Oreo has released with many restrictions on running background services/Task. Services now don't behave like normal in Oreo as they used to before. But what if I have to run a service in background for 24*7 for Instant Messaging. I am developing an application for Instant messaging using kurento Third Party API. To achieve this I will have to run a background service which communicate with server for new messages. Lower then Oreo its working fine. How do I prevent android system to

UFW not allowing Kurento Media Server 6.7 to get connected through ws_uri

人走茶凉 提交于 2019-12-25 00:33:20
问题 Problem I had very strange experiences while configuring UFW for kurento-media-server(version 6.7.0) in Ubuntu 16.04 for a local network . My node app and KMS are both installed on the same server, running on different ports. With UFW disabled, the app works fine, and the node app is working quite well with KMS. Now, I activate ufw and configure it to allow in and out kurento-media-server listening port( 8888 ) allow in and out connections through all UDP ports, allow in through node app's

Mixing streams concept in kurento media server

点点圈 提交于 2019-12-22 14:03:53
问题 Can anybody explain what is the basic concept in mixing in Kurento media server? As it is mentioned in what kurento provides, there is a term mixing. So, I would like to know what kurento Media server mixes. As, Do it mix multi stream generated by a user into one stream and broadcast that stream to other receiving user? If it does this how to use this concept Do kurento able to receive multi-streams through one PeerConnection object with user, i.e., at one WebRtcEndPoint Kurento can receive

How to pass extra parameter in to kms plugin

我只是一个虾纸丫 提交于 2019-12-22 12:22:22
问题 What i do: 1.I generated so for the kms-opencv-plugin-sample(using link https://github.com/Kurento/kms-opencv-plugin-sample.) 2.To call the opencv-plugin from client-js,i modified crowddetector-client-js "https://github.com/Kurento/kurento-tutorial-js/tree/master/kurento-crowddetecto‌​r"(renamed the folder name to kurento-module-opencvpluginsample). 3.Modification i have done: 1.Updated the opencv js file path in the index.html 2.Replaced the "kurento-module-crowddetector" to "kurento-module

What does this code mean, “404=Not Found; 404;-32601”? This occurs while joining a room in the Kurento media server

一曲冷凌霜 提交于 2019-12-22 05:54:40
问题 I am working in android Application where i have stream a video. I am using kurento media server for Streaming . I am Connecting to KMS by using the following Code: executor = new LooperExecutor(); executor.requestStart(); String wsRoomUri = "wss://192.168.0.104:8433/kurento"; kurentoRoomAPI = new KurentoRoomAPI(executor, wsRoomUri, this); CertificateFactory cf; try { cf = CertificateFactory.getInstance("X.509"); InputStream caInput = new BufferedInputStream(getAssets().open("kurento_room

How to use kurento-media-server for audio only stream?

流过昼夜 提交于 2019-12-21 12:41:08
问题 I want to have only audio stream communication between peers , I changed the parts of kurento.utils.js to get only audio stream via getusermedia but it's not working I used this example node-hello-world example WebRtcPeer.prototype.userMediaConstraints = { audio : true, video : { mandatory : { maxWidth : 640, maxFrameRate : 15, minFrameRate : 15 } } }; to WebRtcPeer.prototype.userMediaConstraints = { audio : true, video : false }; is it possible use kurento service for only audio stream? 回答1:

How to disable video encoding In Kurento Media Server?

狂风中的少年 提交于 2019-12-21 01:39:10
问题 I am using Kurento media server for video streaming, I have h264 video source over RTSP. I am creating PlayerEndpoint using below code. pipeline.create('PlayerEndpoint', {uri: 'rtsp://hostaddress:8554/stream', useEncodedMedia: false}, function(error, _playerEndpoint) { But still it converts/encodes h264 into VP8, It needs more processing for encoding. So I am getting delay in video stream. I just want to stream h264 video directly without conversion/encoding into VP8. I think Firefox support

Android webrtc not working with 3g, 4g

点点圈 提交于 2019-12-20 15:28:36
问题 In android application i have user webrtc for video calling app. If mobile is connected with wifi then app work perfectly. When i change wifi to mobile data and start app then app not work and also not display video . I have user webrtc in my app and server side kurento. Below list of scenario with status : Browser Client + Mobile Client -> Both on same Wifi network(KMS Server on same wifi network) -> Working fine . Mobile Client + Mobile Client -> Both on same Wifi network(KMS Server on same

Need clarification on Kurento's API to connect webRTCEndpoint to RTPEndpoint

纵然是瞬间 提交于 2019-12-19 10:54:10
问题 I am attempting to use Kurento's bridging of webRTCendpoint to RTPendpoint. The webRTCendpoint client is a Chrome browser. The RTPendpoint client is a SIP server (proxy/B2BUA). Here is the basic code or pseudo-code I have (I am using Kurento-client.js in my app server): //On receipt of offer from the WebRTC Browser-Peer mySignalling.on('sdpOffer', function(sdpOffer) { //Action starts! //Create Mediapipeline so that endpoints can be created kurentoClient.create('MediaPipeline', function(error,