two datasinks: is it possible?
Hi. I have one stream in, and I want to send two streams out. I do all the stuff needed, build MediaLocator, Processor, etc
till I get to this instruction:
dataOutput = processor.getDataOutput();
Well. My question is: is it possible to use two datasinks to send this stream to two different ip addresses?
I do this:
String rtpURL ="rtp://" + ipAddressTo +":" + portTo +"/audio";
MediaLocator outputLocator =new MediaLocator(rtpURL);
Then I create the datasink coalling the Manager.
Can I do the same with another datasink with a RTPurl2 ?
I've tried to create a clone of the datasource, but it seems to not work.
Do I have to se the SessionManager, and so to learn all about it? Is not possible to use datasink when you have the same stream to send to many ip?
Thanks.

