Java RTSP client/server library

廉价感情. 提交于 2019-11-28 06:33:09

If you're still interested, Netty provides RTSP support since version 3.2.

You can use Netty NIO framework to write your own RTSP server / client implementation.

You can try using FMJ. It's a set of libraries that wrap a lot of modern codecs in Java interfaces.

There is no java implementation of RTSP protocol. You must do it yourself using a NIO framework (MINA, GRIZZLY, NETTY...) its a possible solution.

Red5 has some support or is going to have support for RTSP and is Java based.

And, as I think you know already, you can use Xuggler :)

you can use vlc(Videolan client) whith vlcj and JNA

enthusiasticgeek

Look at Gstreamer. I have created a Java code for RTSP Client. And also posted link on RTSP server rtsp streaming on java

Some time ago I've coded android rtsp streaming client (android could stream to media server, wowza in that particular case). There are only couple tricky moments with that approach:

  • it was based on known trick with unix sockets and parsing mp4 generated by the device in order to get NALU out of it;
  • timestamps synchronisation for audio and video is really not trivial on android when two media recorders used (for vide and for audio) for getting the media.
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!