How to do rtmp streaming in kurento media server?

6.9k Views Asked by At

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

2

There are 2 best solutions below

6
On

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.

1
On

Yes, it's possible.

https://groups.google.com/g/kurento/c/_1jO6ugsAO4/m/Yen1ug25AwAJ

//here,  I tested with MediaProfileSpecType.MP4, because i do not build the new javaclient sdk.
MediaProfileSpecType profile = MediaProfileSpecType.FLV;
String filePath = "file:///tmp/test.flv";
RecorderEndpoint recorder = new RecorderEndpoint.Builder(pipeline, filePath)
.withMediaProfile(profile).build();

//build webrtcendpoint 
WebRtcEndpoint webrtcEndpoint = ...;

webrtcEndpoint.connect(recorder);

The third post from richmonkey have an example code that I'd test in my computer to stream to youtube.

You gotta use RecorderEndpoint with a media profile.