tags:

views:

141

answers:

2

Hello All,

Is there a Java RTP/RTCP library based on Java NIO or some Java NIO framework (Netty, MINA, ...)?

+1  A: 

You would have to write a wrapper yourself, I'm afraid. Netty has a pretty flexible architecture that would allow that.

mlaverd
+1  A: 

In Red5, we are adapting an RTP/RTSP library written using Mina. If you would like to check it out, go here: http://red5.googlecode.com/svn/java/plugins/trunk/rtspplugin/

The original library was written by Matteo Merli ([email protected]) and yes, we have his permission to modify it.

Mondain
Thanks for the info. But the RTP part of the library seems not to contain the actual RTP/RTCP handlers, just packet classes, or am I mistaken?
I was under the impression that everything needed was there. I am not absolutely sure of this however.
Mondain