kurento

Cannot install kurento-media-server-6.0 in Ubuntu Linux 16.04

安稳与你 提交于 2019-12-02 23:16:34
Cannot install kurento-media-server-6.0 in Ubuntu Linux 16.04 its always showing dependencies problem as below. sudo apt-get install kurento-media-server-6.0 Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: kurento-media

Install error with Kurento on ubuntu

不羁岁月 提交于 2019-12-02 20:04:19
问题 I have gone through all the Kurento questions on Stackoverflow and this error dose not seem to have arisen before. I have installed the Kurento media-server and java client examples according the installation guides. I have the media-server running. The problem arises when i go to run the client application. The same issue comes up not matter which one I choose. This the Error that is generated: [INFO] Scanning for projects... [ERROR] The build could not read 1 project -> [Help 1] [ERROR]

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

為{幸葍}努か 提交于 2019-12-01 13:44:57
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, pipeline) { pipeline.create('webRtcEndpoint', function(error, myWebrtcEndpoint) { //Get ICE Candidates

Kurento Media WebRTC to RTP

偶尔善良 提交于 2019-12-01 12:55:26
I am using kurento's master git to make a WebRTC to RTP bridge. MediaPipeline pipeline = kurento.createMediaPipeline(); WebRtcEndpoint webRtcEndpoint = new WebRtcEndpoint.Builder(pipeline).build(); HttpGetEndpoint httpEndpoint=new HttpGetEndpoint.Builder(pipeline).build(); org.kurento.client.Fraction fr= new org.kurento.client.Fraction(1, 30); VideoCaps vc= new VideoCaps(VideoCodec.H264,fr); httpEndpoint.setVideoFormat(vc); AudioCaps ac= new AudioCaps(AudioCodec.PCMU, 65536); httpEndpoint.setAudioFormat(ac); webRtcEndpoint.connect(httpEndpoint); However inspite of this the output video playing

Kurento Media WebRTC to RTP

亡梦爱人 提交于 2019-12-01 10:16:24
问题 I am using kurento's master git to make a WebRTC to RTP bridge. MediaPipeline pipeline = kurento.createMediaPipeline(); WebRtcEndpoint webRtcEndpoint = new WebRtcEndpoint.Builder(pipeline).build(); HttpGetEndpoint httpEndpoint=new HttpGetEndpoint.Builder(pipeline).build(); org.kurento.client.Fraction fr= new org.kurento.client.Fraction(1, 30); VideoCaps vc= new VideoCaps(VideoCodec.H264,fr); httpEndpoint.setVideoFormat(vc); AudioCaps ac= new AudioCaps(AudioCodec.PCMU, 65536); httpEndpoint

How to implement MCU for Audio conference using Kurento Media Server?

依然范特西╮ 提交于 2019-12-01 07:01:46
I am able to stream video with Kurento using WebRTC, I need to implement multi party audio conference using MCU feature of Kurento Media server. So audio coming from all clients are merged and send back that combined audio to all clients in efficient manner using WebRTC. if it will works then we need only two connection(one for send and one for receive) other wise we need peer connection to all clients using WebRTC. It is not feasible to establish peer connection to all all clients. Please suggest me any sample code which have implemented MCU for audio using Kurento Media Server or guide me to

Events not reaching kurento java server

吃可爱长大的小学妹 提交于 2019-12-01 05:29:40
问题 I'm new to Kurento media server, I am trying to send an event from kurento media server to the java application which I have. I have created an event using the following steps: edited the interface json file: "events": [{ "properties": [{ "name": "Total", "doc": "Total", "type": "float" }], "extends": "Media", "name": "TotalDetected", "doc": "Total Detected." }] then in my .hpp file: sigc::signal<void, TotalDetected> signalTotalDetected; and in my .cpp file: try { GST_WARNING ("Sending Event:

How to implement MCU for Audio conference using Kurento Media Server?

谁说我不能喝 提交于 2019-12-01 03:35:31
问题 I am able to stream video with Kurento using WebRTC, I need to implement multi party audio conference using MCU feature of Kurento Media server. So audio coming from all clients are merged and send back that combined audio to all clients in efficient manner using WebRTC. if it will works then we need only two connection(one for send and one for receive) other wise we need peer connection to all clients using WebRTC. It is not feasible to establish peer connection to all all clients. Please

Can I use some sort of local storage as a temporary holding place for getUserMedia for near-RTC?

こ雲淡風輕ζ 提交于 2019-11-27 15:18:10
I have a use case that doesn't exactly require real time communication, but as close as I can get it to make sure my users don't have to wait forever uploading a file after the fact. Our site allows users to record video and audio that we then store on our server. I moved from flash, because flash, to a WebRTC implementation with a Kurento media server. This works super well with high quality internet connections but is relatively lacking for users with poor connectivity. I was thinking if I could some how implement a bit of a buffer before feeding the server so that I can make up for dips in