TCM
TCM

Reputation: 16920

How to stream video in webpage?

Say suppose i am on my website and i want to stream live video which should be available to all users who view the webpage. How can this be done in Java? Any help is appreciated.

Thanks in advance :)

Upvotes: 2

Views: 2026

Answers (2)

Art Clarke
Art Clarke

Reputation: 2505

You can also look at Xuggler which supports a lot more codecs for decoding and encoding than JMF does.

Upvotes: 1

Lajcik
Lajcik

Reputation: 306

I can't give you specifics (since i didn't have any opportunities to work with it), but you should take a look at Java Media Framework (JMF for short) http://java.sun.com/javase/technologies/desktop/media/jmf/

It offers streaming support over the RTP and RTSP protocol (RFC 2326: Real Time Streaming Protocol)

Maybe somebody else can give you more details, but this seems to be the best place to start.

Upvotes: 1

Related Questions