Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any good libraries for streaming live video using Java? Ideally both ends of the pipe should be written in Java but I am mostly concerned about the video player. What software would you recommend?

UPDATE: It seems that VLC introduces a 1-2 second delay. I need video streaming that is truly live. The record-to-playback delay must be under 300ms.

share|improve this question
2  
I think you can adjust the buffer sizes in VLC to reduce the delay. Not exactly sure how to do that, and probably unlikely you will get below 300mS, but you maybe able to improve it. – simon Sep 4 '09 at 21:15

5 Answers

up vote 5 down vote accepted

The best video playback/encoding library I have ever seen is ffmpeg. It plays everything you throw at it. (It is used by MPlayer.) It is written in C but I found some Java wrappers.

  • FFMPEG-Java: A Java wrapper around ffmpeg using JNA.
  • jffmpeg: This one integrates to JMF.
share|improve this answer
2  
I ended up using VideoLAN (aka VLC Media Player) because it is a superset of ffmpeg. Thank you for the head's up :) – Gili Aug 11 '09 at 19:02
Ugh. VLC 1.01 isn't suitable for live video streaming. It introduces a 1-2 second delay, even when streaming to the local computer. – Gili Aug 12 '09 at 19:20
I ended up using VideoLAN (VLC Media Player) in the end in spite of the 1-2 second delay. It seems to be the only game in town right now. – Gili Jul 13 '10 at 2:59

You can do this today in Java with the Red5 media server from Flash. If you want to also decode and encode video in Java, you can use the Xuggler project.

share|improve this answer

You could always check out JMF (Java Media Framework). It is pretty old and abandoned, but it works and I've used it for apps before. Looks like it handles what you're asking for.

share|improve this answer

Hi not an expert in streaming but my understanding is that it is included in th Java Media Framework JMF http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/support-rtsp.html

share|improve this answer

JMF was abandoned. VLC is more up to date and it reads everything. http://stackoverflow.com/a/5160010

I think vlc beats every other software out there yet, or at least the ones that I know...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.