Wowza Community

multi point publish WOWZA to other Streaming Server.

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");
}

Hello.

It sounds like you are looking for Push Publishing:

How to use CDNs and services to distribute live streams (push publishing)

Regards,

Salvadore

Hello.Salvadore

Thank you !

I try it.

Regards,

Ayumi