Hello.
I am trying publish streaming WOWZA to other Streaming Server(not wowza),on rtsp protocol.
I want to the processing on the server side API (Java)、but do not know how to do.
Can I deliver the Stream to another server? For example, as of FMS。。。。
application.onPublish = function(client, myStream)
{
nc = new NetConnection();
nc.connect("rtsp://xxxxxx");
ns = new NetStream(nc);
ns.attach(myStream);
ns.publish("stream");
}