2

I'm looking to write a voip application, I know JMF has RTP code but it's old and 32bit only. Is there a robust library that does RTP/RTSP that can be used with java?

Thanks

Tanner
  • 21
  • 1
  • 3
  • Check this post http://stackoverflow.com/questions/3193837/java-rtp-rtcp-library-using-nio – MARK Feb 19 '12 at 21:03

1 Answers1

3

no way JMF - its 10 years out of date

list java RTP RTSP packages: RTSPClientLib.tar.gz on code.google http://github.com/brunodecarvalho/efflux

i used the efflux on a java project and it was worth the time learning his packages. The combined netty/efflux is very robust on the variety of RFC's involved in networking underlying RTSP/RTP.

i think i have an eclipse project archived somewhere using efflux for alot of RTSP dialog type stuff.

Robert Rowntree
  • 6,230
  • 2
  • 24
  • 43