I´m trying to integrate Kurento and Wowza. My idea is to stream a video from the Kurento server to a publication point in Wowza, because of scalability reasons. Is this possible?I'm using group call example and I need to stream one video from one particular user to the Wowza server.
--
You received this message because you are subscribed to the Google Groups "kurento" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kurento+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
@Yago The code is definitely not ok. This
rtpEndpoint.connect(rtpEndpoint);
doesn’t make sense at all, as you are connecting the rtpEndpoint with itself. The semantics of the connect method is quite straightforward: source.connect(sink)
. By doing that, you are connecting the rtp endpoint with itself.
Please do search in the list, as this topic is quite popular.
Hi!I'm wondering if it is possible to publish the stream in the Wowza server from the HelloWorld application in Kurento. Now, I have to upload manually my .sdp file to [install-dir]/content folder on the Wowza Streaming Engine and then I have to connect my .sdp file with the application. It's possible to do it from the application?
--
Hi,
--
You received this message because you are subscribed to a topic in the Google Groups "kurento" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/kurento/rvcO5BSJmcQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to kurento+u...@googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "kurento" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/kurento/rvcO5BSJmcQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to kurento+u...@googlegroups.com.
It’s in the kurento-client dependency you are defining in your pom (version numbers might differ)
<dependency>
<groupId>org.kurento</groupId>
<artifactId>kurento-client</artifactId>
<version>6.2.2-SNAPSHOT</version>
</dependency>
Force your IDE to update dependencies, as the RtpEndpoint is there. You can open that jar that is inside your local maven repository, and check that it is there also.
You received this message because you are subscribed to a topic in the Google Groups "kurento" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/kurento/rvcO5BSJmcQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to kurento+u...@googlegroups.com.
You can just change what you are feeding the RTPEndpoint seamlessly
webrtc.connect(rtp)
//...
anotherwebrtc.connect(rtp)
--