Problem playing remote live stream from FMS
Hello all,
I'm having problems playing remote live streams from FMS (server-side) that I can play with any other player (client-side)
Example of server-side application which plays a remote live stream:
nc = new NetConnection();
nc.connect("rtmp://remoteserver/live");
stream = Stream.get("localStream");
stream.play("remoteStream.flv", -1, -1, true, nc);
This code works only sometimes.
Most of the times, FMS is able to connect to remote string and the localStream dispatches events:
NetStream.Publish.Strart
NetStream.Play.Reset
In this case, FMS is publishing the local stream but it is not playing the remoteStrem on it.
The rest of the times, localStream dispatches events:
NetStream.Publish.Strart
NetStream.Play.Reset
NetStream.Play.Start
NetStream.Data.Start
In this case FMS plays the remoteStream correctly.
Any hint to solve this issue?
Regards.
