views:

25

answers:

1

I wanted to stream live audio & video from one client to another over the internet, iam using websphere community edition as my server, and iam supposed to do this task using java j2ee technologies. iam doing this as a part of the project for IBM TGMC. pls suggest which particular api or tech is best suited for my purpose?

i googled out jmf, but hear that its a bit complex n old, is there a better alternative?

A: 

JMF is complex because media handling is complex - there is no 'magic wand'. It is not only old but abandoned.

JMF works just fine for the codecs it supports, but those codecs are not as compressive as some that were developed later. OTOH if you can develop an encoder/decoder for the codec of interest, it should be relatively simple to get JMF to use it - JMF supports new codecs via the SPI.

No there is no better alternative that I know about. FMJ was designed as an alternative to JMF, but last I heard, it had also been abandoned.

Andrew Thompson