kurento

Implementing Kurento Client with WebRTC on Android

情到浓时终转凉″ 提交于 2019-12-11 02:35:44
问题 I'm trying to implement WebRTC on an android device supporting API 22 and I'm trying to connect to Kurento Media Server to establish media server capabilities. For my application Server layer, I'm trying to utilize a Java Server based on Tomcat, and this is implementing a Kurento Client API to connect to the Kurento Media Server. The issue I am having is understanding how to go about establishing a connection between the Android device and Kurento and doing a media transfer after the

Node Tutorial one to Many has no loading the remote server Stream Spinner moving endless

你。 提交于 2019-12-10 21:47:43
问题 I am new to using Kurrento required in project , but as i clone the tutorial given on git hub for Kurento and following the instruction for one2Many call . First of all there is broken packages fro adapter.js as i successfully resolved them but after that there is an issue i.e my webcam is running well and i am able to see my side stream but not able to see the remote stream there is spinner moving endless. And also there are two error as i see on console of my chrome i.e:- 1)Failed to parse

Kurento recording not recording any data

假如想象 提交于 2019-12-10 10:26:05
问题 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

KMS Remote streaming issue in AWS Ubuntu instance

夙愿已清 提交于 2019-12-08 12:48:20
问题 What i do: 1.I installed the KurentoMediaServer in my local machine using the link http://doc-kurento.readthedocs.org/en/stable/installation_guide.html and started the KurentoMedia Server sudo service kurento-media-server-6.0 start 2.Then downloaded the Kurento-tutorial-js from the github link https://github.com/Kurento/kurento-tutorial-js and from the hello world folder, start the http server using the command bower install http-server 3.From the browser,i loaded the link http://localhost

【Docker(三)】创建自己的镜像

有些话、适合烂在心里 提交于 2019-12-07 14:58:59
创建镜像有两种方式:commit命令方式与Dockerfile方式。但是一般不建议使用commit命令方式。本文将两种方式均简单说明一下。 commit命令方式 : commit是直接在命令行使用,可以在某个镜像的容器基础上进行镜像定制。也就是说可以运行某个镜像的容器,在将容器进行自己需要的改动后再这个基础上定制镜像。 命令:docker commit [-a '作者信息' -m '镜像说明'] 容器ID 新镜像命名 这样就定制了一个基于容器ID的新镜像 。 Dockerfile方式: 镜像的定制实际上就是定制每一层所添加的配置、文件。如果我们可以把每一层修改、安装、构建、操作的命令都写入一个脚本,这个脚本就是 Dockerfile。 Dockerfile 是一个文本文件,其内包含了一条条的指令(Instruction),每一条指令构建一层,因此每一条指令的内容,就是描述该层应当如何构建。 应该在一个空白目录中,建立一个文本文件,并命名为 Dockerfile : $ mkdir 111 $ cd 111 $ vi Dockerfile 内容为: FROM nginx RUN echo '<h1>Hello, Docker!</h1>' > /usr/share/nginx/html/index.html FROM 是制定基础镜像,所谓定制镜像,那一定是以一个镜像为基础

How to do rtmp streaming in kurento media server?

可紊 提交于 2019-12-07 14:45:43
问题 I was just wondering if there is any feature like RTMP in Kurento Media Server . I need it to stream my vod content . Any ideas ? anyhow RTP can be used for it ? Thanks Pawan 回答1: There isn't a rtmp endpoint in Kurento, at least yet. But we have streamed content to a Wowza mediaserver using an RTP Endpoint with the last kurento development version. Maybe this can also work for you. 来源: https://stackoverflow.com/questions/27203318/how-to-do-rtmp-streaming-in-kurento-media-server

Mixing streams concept in kurento media server

牧云@^-^@ 提交于 2019-12-06 11:34:12
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 or send multi stream by mixing those streams into one stream? Edit Regarding Answer Update So, I can use

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

拜拜、爱过 提交于 2019-12-06 11:31:59
问题 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

Kurento Installation Unmet Dependencies

我与影子孤独终老i 提交于 2019-12-06 06:58:40
问题 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

How to do rtmp streaming in kurento media server?

回眸只為那壹抹淺笑 提交于 2019-12-06 00:42:56
I was just wondering if there is any feature like RTMP in Kurento Media Server . I need it to stream my vod content . Any ideas ? anyhow RTP can be used for it ? Thanks Pawan There isn't a rtmp endpoint in Kurento, at least yet. But we have streamed content to a Wowza mediaserver using an RTP Endpoint with the last kurento development version. Maybe this can also work for you. 来源: https://stackoverflow.com/questions/27203318/how-to-do-rtmp-streaming-in-kurento-media-server