The diference between MediaLocator and DataSource to create Processor
When I want to delevery stream of media, I use the Media
String port ="22000";
String ip ="192.168.1.3".;
// this is the ip of the Target machine not of server machine
MediaLocator ml =new MediaLocator ("rtp://"+ip+":"+port);
Processor processor = Manager.createProcessor (ml);
In this case I need to know (ip) my clients.
But if I use this:MediaLocator ml =new MediaLocator (_URL_);
DataSource ds = Manager.createDataSource (ml);
Processor processor = Manager.createProcessor (ds);
Changes ?
If my clients knows my IP (of server), how Can I do to server "serves" all request?
Is possible that my server delivery to more than one client?

