kurento

Kurento recording not recording any data

久未见 提交于 2019-12-05 19:44:18
I am working a little bit off of the one2many call tutorial, the one2many call advanced tutorial, and the hello-world recording but I cannot seem to get my recording to work. It creates the file, but it is always 382 bytes with no playable content. There are no errors being thrown and communication between the browser and app server are working without failure as well. This is what the code that handles the initial recording request looks like: //1. Media logic BroadcastPipeline broadcastPipeline = new BroadcastPipeline(kurento, "test-broadcast"); //2. User session broadcasterUserSession = new

Error trying to compile Kurento Java tutorial [maven dependency resolution] [duplicate]

别等时光非礼了梦想. 提交于 2019-12-04 16:21:24
This question already has answers here : Install error with Kurento on ubuntu (3 answers) Closed 4 years ago . After trying the following as specified on the kurento website, git clone https://github.com/Kurento/kurento-tutorial-java.git cd kurento-tutorial-java/kurento-one2one-call-advanced mvn compile exec:java I get an error like : Failed to execute goal on project kurento-client: Could not resolve dependencies for project org.kurento:kurento-client:jar:6.1.1-SNAPSHOT: The following artifacts could not be resolved: org.kurento:kurento-jsonrpc-client:jar:6.1.1-SNAPSHOT, org.kurento:kurento

Kurento Installation Unmet Dependencies

核能气质少年 提交于 2019-12-04 10:59:08
I am trying to install latest stable version of Kurento (V 6.0) in Ubutu Trusty (14.04). Unfortunately, I've got stranger messages: Output: The following packages have unmet dependencies: kurento-media-server-6.0 : Depends: kms-core-6.0 (>= 6.4.0) but it is not going to be installed Depends: libglib2.0-0 (>= 2.41.1) but 2.40.2-0ubuntu1 is to be installed Depends: libgstreamer1.5-0 (>= 1.7.1.1~20160224213114.199.gba35ee7.trusty) but it is not going to be installed Depends: gstreamer1.5-plugins-base (>= 1.7.0~0) but it is not going to be installed Depends: gstreamer1.5-libav (>= 1.7.0~0) but it

having a issue changing Kurento projects certificate?

不问归期 提交于 2019-12-04 09:00:42
I have configured the environment of [kurento server][1] (a WebRTC media server and a set of client APIs making simple the development of advanced video applications for WWW and smartphone platforms) and I got the tutorial project up and running. But I am having an issue with changing the certificate that are included with the projects. Can you please point me in the right direction on how to do that without causing a problem, since when I created a new keystore the maven compile failed. -- here is a snapshot of the stack trace after doing what the site [ securing the application ] steps ( I

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

北城余情 提交于 2019-12-04 06:37:58
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? This is indeed possible with Kurento. There are two ways of doing this, depending on the desired scope of

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

别来无恙 提交于 2019-12-03 09:04:45
问题 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

How to disable video encoding In Kurento Media Server?

╄→尐↘猪︶ㄣ 提交于 2019-12-03 07:47:39
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 for H264 video codec. Is it possible to disable encoding in Kurento media server? If yes, then please

Android webrtc not working with 3g, 4g

徘徊边缘 提交于 2019-12-03 03:55:09
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 wifi network) -> Working fine . Browser Client + Mobile Client -> One of them on wifi(KMS Server on

Building Kurento on lubuntu 15.04

匿名 (未验证) 提交于 2019-12-03 02:38:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am trying to build whole Kurento on my lubuntu 15.04 (same as ubuntu 15.04 vivid with different UI). I started by cloning all repos: mkdir kurento cd kurento git clone https://github.com/Kurento/kms-jsonrpc.git git clone https://github.com/Kurento/kurento-module-creator.git git clone https://github.com/Kurento/kms-filters.git git clone https://github.com/Kurento/kms-core.git git clone https://github.com/Kurento/kms-elements.git git clone https://github.com/Kurento/adm-scripts.git git clone https://github.com/Kurento/kms-cmake-utils.git git

Kurento Media WebRTC to RTP

匿名 (未验证) 提交于 2019-12-03 02:29:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: 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